1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 22:10:45 +02:00

[ticket/14844] Add CSS classes for strong and italics text to BBCodes

PHPBB3-14844
This commit is contained in:
Marc Alexander
2017-03-19 15:35:51 +01:00
parent 0f95e607ff
commit 051644d663
2 changed files with 10 additions and 2 deletions

View File

@@ -146,10 +146,18 @@ b, strong {
font-weight: bold;
}
.text-strong {
font-weight: bold;
}
i, em {
font-style: italic;
}
.text-italics {
font-style: italic;
}
u {
text-decoration: underline;
}