1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-04-11 11:24:23 +02:00

[ticket/16237] fix quote icon

PHPBB3-16237
This commit is contained in:
hanakin 2020-08-19 21:47:01 -10:00 committed by Marc Alexander
parent 22b03d9514
commit a9b38bb2cb
No known key found for this signature in database
GPG Key ID: 50E0D2423696F995

View File

@ -50,12 +50,17 @@ span + .o-icon {
blockquote cite:before,
.uncited:before {
content: "\f10d"; /* Font Awesome quote-left */
font-size: 36px;
vertical-align: bottom;
display: inline-block;
margin-top: 8px;
margin-bottom: -8px;
content: "\201C";
}
.rtl blockquote cite:before,
.rtl .uncited:before {
content: "\f10e"; /* Font Awesome quote-right */
content: "\201D";
}
.c-forum-row-icon,