aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/styles/prosilver/theme
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2017-03-19 15:35:51 +0100
committerMarc Alexander <admin@m-a-styles.de>2017-03-19 15:35:51 +0100
commit051644d663f9f93d52fffa45ed782d480bac2901 (patch)
treedfb100531fd3fca2dc79a2e25f0045566cf693cf /phpBB/styles/prosilver/theme
parent0f95e607ff91277a50bd5ff04d8a60a553dd918e (diff)
downloadforums-051644d663f9f93d52fffa45ed782d480bac2901.tar
forums-051644d663f9f93d52fffa45ed782d480bac2901.tar.gz
forums-051644d663f9f93d52fffa45ed782d480bac2901.tar.bz2
forums-051644d663f9f93d52fffa45ed782d480bac2901.tar.xz
forums-051644d663f9f93d52fffa45ed782d480bac2901.zip
[ticket/14844] Add CSS classes for strong and italics text to BBCodes
PHPBB3-14844
Diffstat (limited to 'phpBB/styles/prosilver/theme')
-rw-r--r--phpBB/styles/prosilver/theme/common.css8
1 files changed, 8 insertions, 0 deletions
diff --git a/phpBB/styles/prosilver/theme/common.css b/phpBB/styles/prosilver/theme/common.css
index 0ac7a45a23..df923aa948 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;
}