1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-03-23 00:50:30 +01:00

[ticket/15086] Move RTL Font Awesome icon to icons.css

Per github discussion, move the RTL Font Awesome coding from bidi.css
to icons.css.

PHPBB3-15086
This commit is contained in:
nomind60s 2017-03-10 22:11:47 -07:00
parent b56be33e5b
commit 605af49562
2 changed files with 6 additions and 6 deletions

View File

@ -505,12 +505,6 @@ li.breadcrumbs span:first-child > a {
margin-left: 0;
}
.rtl blockquote cite:before, .uncited:before {
padding-right: 0;
padding-left: 5px;
content: '\f10e'; /* Font Awesome quote-right */
}
.rtl blockquote .codebox {
margin-right: 0;
}

View File

@ -102,3 +102,9 @@ blockquote cite:before, .uncited:before {
content: '\f10d'; /* Font Awesome quote-left */
}
.rtl blockquote cite:before, .rtl .uncited:before {
padding-right: 0;
padding-left: 5px;
content: '\f10e'; /* Font Awesome quote-right */
}