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

[ticket/15086] Handle the uncited case properly

The blockquote uncited CSS needs the Font Awesome icon added as well

PHPBB3-15086
This commit is contained in:
nomind60s 2017-02-24 06:26:42 -07:00
parent 92fefcfe6f
commit 4113fba04d

View File

@ -483,7 +483,14 @@ blockquote cite cite {
}
blockquote.uncited {
padding-top: 25px;
padding-top: 0;
}
blockquote.uncited:before {
/* Font Awesome quote-left */
content: '\f10d';
font-family: FontAwesome;
padding-right: 5px;
}
blockquote cite > div {