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

Merge branch '3.1.x' into 3.2.x

* 3.1.x:
  [ticket/14844] Add CSS classes for strong and italics text to BBCodes
This commit is contained in:
Tristan Darricau
2017-03-19 18:00:35 +01:00
2 changed files with 10 additions and 2 deletions

View File

@@ -97,10 +97,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;
}