1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-03-24 01:20:40 +01: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:
nomind60s 2017-03-10 11:42:50 -07:00
parent 6bbb7581c2
commit b56be33e5b
3 changed files with 18 additions and 15 deletions

View File

@ -502,15 +502,13 @@ li.breadcrumbs span:first-child > a {
.rtl blockquote cite {
/* Username/source of quoter */
margin-right: 0;
margin-left: 0;
}
.rtl blockquote cite:before, .uncited:before {
/* Font Awesome quote-right */
content: '\f10e';
padding-right: 0;
padding-left: 5px;
content: '\f10e'; /* Font Awesome quote-right */
}
.rtl blockquote .codebox {

View File

@ -466,26 +466,14 @@ blockquote cite {
/* Username/source of quoter */
font-style: normal;
font-weight: bold;
margin-left: 0;
display: block;
font-size: 0.9em;
}
blockquote cite:before, .uncited:before {
/* Font Awesome quote-left */
content: '\f10d';
font-family: FontAwesome;
padding-right: 5px;
}
blockquote cite cite {
font-size: 1em;
}
blockquote.uncited {
padding-top: 0;
}
blockquote cite > div {
float: right;
font-weight: normal;

View File

@ -85,3 +85,20 @@
line-height: .9;
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 */
}