mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-12 22:38:52 +00:00
[ticket/15086] Rework specification of properties to simplify
Once more rework the property specifications to maintain backwards compatability and keep changes as small as possible. Thanks hanakin for the assistance. PHPBB3-15086
This commit is contained in:
parent
605af49562
commit
6da3b5e93d
3 changed files with 9 additions and 14 deletions
|
@ -505,6 +505,10 @@ li.breadcrumbs span:first-child > a {
|
||||||
margin-left: 0;
|
margin-left: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.rtl blockquote cite:before, .rtl .uncited:before {
|
||||||
|
padding-left: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
.rtl blockquote .codebox {
|
.rtl blockquote .codebox {
|
||||||
margin-right: 0;
|
margin-right: 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -474,6 +474,10 @@ blockquote cite cite {
|
||||||
font-size: 1em;
|
font-size: 1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
blockquote cite:before, .uncited:before {
|
||||||
|
padding-right: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
blockquote cite > div {
|
blockquote cite > div {
|
||||||
float: right;
|
float: right;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
* Just change the name of the font after the 14/1 to the name of
|
* Just change the name of the font after the 14/1 to the name of
|
||||||
* the font you wish to use.
|
* the font you wish to use.
|
||||||
*/
|
*/
|
||||||
.icon, .button .icon {
|
.icon, .button .icon, blockquote cite:before, .uncited:before {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
|
@ -88,23 +88,10 @@
|
||||||
|
|
||||||
|
|
||||||
blockquote cite:before, .uncited:before {
|
blockquote cite:before, .uncited:before {
|
||||||
-webkit-font-smoothing: antialiased;
|
|
||||||
-mos-osx-font-smoothing: grayscale;
|
|
||||||
font-family: FontAwesome;
|
|
||||||
font-size: 14px;
|
|
||||||
font-weight: normal;
|
|
||||||
font-style: normal;
|
|
||||||
font-variant: normal;
|
|
||||||
line-height: 1;
|
|
||||||
text-rendering: auto;
|
|
||||||
display: inline-block;
|
|
||||||
padding-right: 5px;
|
|
||||||
content: '\f10d'; /* Font Awesome quote-left */
|
content: '\f10d'; /* Font Awesome quote-left */
|
||||||
}
|
}
|
||||||
|
|
||||||
.rtl blockquote cite:before, .rtl .uncited:before {
|
.rtl blockquote cite:before, .rtl .uncited:before {
|
||||||
padding-right: 0;
|
|
||||||
padding-left: 5px;
|
|
||||||
content: '\f10e'; /* Font Awesome quote-right */
|
content: '\f10e'; /* Font Awesome quote-right */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue