diff options
author | Tristan Darricau <github@nicofuma.fr> | 2017-03-19 18:00:35 +0100 |
---|---|---|
committer | Tristan Darricau <github@nicofuma.fr> | 2017-03-19 18:00:35 +0100 |
commit | 67509edd4070b6a8158e1572241a96bc28c8d3c9 (patch) | |
tree | 22c27fe4a458f093538246536497884f5fee3d92 /phpBB/styles/prosilver/theme | |
parent | e497937dd437796148556241f045ac9480b4a675 (diff) | |
parent | d114a3d4152f646564a90a436a9545a62a452262 (diff) | |
download | forums-67509edd4070b6a8158e1572241a96bc28c8d3c9.tar forums-67509edd4070b6a8158e1572241a96bc28c8d3c9.tar.gz forums-67509edd4070b6a8158e1572241a96bc28c8d3c9.tar.bz2 forums-67509edd4070b6a8158e1572241a96bc28c8d3c9.tar.xz forums-67509edd4070b6a8158e1572241a96bc28c8d3c9.zip |
Merge branch '3.1.x' into 3.2.x
* 3.1.x:
[ticket/14844] Add CSS classes for strong and italics text to BBCodes
Diffstat (limited to 'phpBB/styles/prosilver/theme')
-rw-r--r-- | phpBB/styles/prosilver/theme/common.css | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/phpBB/styles/prosilver/theme/common.css b/phpBB/styles/prosilver/theme/common.css index aa15fe2b45..ed2cc369b1 100644 --- a/phpBB/styles/prosilver/theme/common.css +++ b/phpBB/styles/prosilver/theme/common.css @@ -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; } |