mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 22:28:51 +00:00
[ticket/15086] Refactoring and moving to icons.css
Per hanakin's github suggestions some refactoring and moved icons into icons.css for conistency. The RTL icons remain in bidi.css to keep all the RTL content in a consistant location. A number of places where setting something to zero have been removed. PHPBB3-15086
This commit is contained in:
parent
6bbb7581c2
commit
b56be33e5b
3 changed files with 18 additions and 15 deletions
|
@ -502,15 +502,13 @@ li.breadcrumbs span:first-child > a {
|
||||||
|
|
||||||
.rtl blockquote cite {
|
.rtl blockquote cite {
|
||||||
/* Username/source of quoter */
|
/* Username/source of quoter */
|
||||||
margin-right: 0;
|
|
||||||
margin-left: 0;
|
margin-left: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.rtl blockquote cite:before, .uncited:before {
|
.rtl blockquote cite:before, .uncited:before {
|
||||||
/* Font Awesome quote-right */
|
|
||||||
content: '\f10e';
|
|
||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
padding-left: 5px;
|
padding-left: 5px;
|
||||||
|
content: '\f10e'; /* Font Awesome quote-right */
|
||||||
}
|
}
|
||||||
|
|
||||||
.rtl blockquote .codebox {
|
.rtl blockquote .codebox {
|
||||||
|
|
|
@ -466,26 +466,14 @@ blockquote cite {
|
||||||
/* Username/source of quoter */
|
/* Username/source of quoter */
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
margin-left: 0;
|
|
||||||
display: block;
|
display: block;
|
||||||
font-size: 0.9em;
|
font-size: 0.9em;
|
||||||
}
|
}
|
||||||
|
|
||||||
blockquote cite:before, .uncited:before {
|
|
||||||
/* Font Awesome quote-left */
|
|
||||||
content: '\f10d';
|
|
||||||
font-family: FontAwesome;
|
|
||||||
padding-right: 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
blockquote cite cite {
|
blockquote cite cite {
|
||||||
font-size: 1em;
|
font-size: 1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
blockquote.uncited {
|
|
||||||
padding-top: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
blockquote cite > div {
|
blockquote cite > div {
|
||||||
float: right;
|
float: right;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
|
|
|
@ -85,3 +85,20 @@
|
||||||
line-height: .9;
|
line-height: .9;
|
||||||
height: 12px;
|
height: 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
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 */
|
||||||
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue