From 051644d663f9f93d52fffa45ed782d480bac2901 Mon Sep 17 00:00:00 2001 From: Marc Alexander Date: Sun, 19 Mar 2017 15:35:51 +0100 Subject: [PATCH] [ticket/14844] Add CSS classes for strong and italics text to BBCodes PHPBB3-14844 --- phpBB/styles/prosilver/template/bbcode.html | 4 ++-- phpBB/styles/prosilver/theme/common.css | 8 ++++++++ 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/phpBB/styles/prosilver/template/bbcode.html b/phpBB/styles/prosilver/template/bbcode.html index 3e38d13a329..49bcd56945e 100644 --- a/phpBB/styles/prosilver/template/bbcode.html +++ b/phpBB/styles/prosilver/template/bbcode.html @@ -18,13 +18,13 @@
- + - + {TEXT} diff --git a/phpBB/styles/prosilver/theme/common.css b/phpBB/styles/prosilver/theme/common.css index 0ac7a45a23f..df923aa9481 100644 --- a/phpBB/styles/prosilver/theme/common.css +++ b/phpBB/styles/prosilver/theme/common.css @@ -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; }