1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-12 11:44:08 +02:00

Merge branch '3.2.x'

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

View File

@@ -103,11 +103,19 @@ strong {
font-weight: bold;
}
.text-strong {
font-weight: bold;
}
i,
em {
font-style: italic;
}
.text-italics {
font-style: italic;
}
u {
text-decoration: underline;
}