diff options
author | PayBas <contact@paybas.com> | 2014-05-04 22:07:03 +0200 |
---|---|---|
committer | PayBas <contact@paybas.com> | 2014-05-04 22:07:03 +0200 |
commit | cefeb7f752e59edc1c1a48f0e3563c2f090625b6 (patch) | |
tree | 09460341a6fbc56e8d4d5387e38477159a6a0647 /phpBB/styles | |
parent | 2c5a2a13902975183ccf43c949aa9bc943641f06 (diff) | |
download | forums-cefeb7f752e59edc1c1a48f0e3563c2f090625b6.tar forums-cefeb7f752e59edc1c1a48f0e3563c2f090625b6.tar.gz forums-cefeb7f752e59edc1c1a48f0e3563c2f090625b6.tar.bz2 forums-cefeb7f752e59edc1c1a48f0e3563c2f090625b6.tar.xz forums-cefeb7f752e59edc1c1a48f0e3563c2f090625b6.zip |
[ticket/12488] Removed <em> and removed anonymous check
PHPBB3-12488
Diffstat (limited to 'phpBB/styles')
-rw-r--r-- | phpBB/styles/prosilver/template/viewtopic_body.html | 2 | ||||
-rw-r--r-- | phpBB/styles/prosilver/theme/colours.css | 2 | ||||
-rw-r--r-- | phpBB/styles/prosilver/theme/content.css | 3 |
3 files changed, 3 insertions, 4 deletions
diff --git a/phpBB/styles/prosilver/template/viewtopic_body.html b/phpBB/styles/prosilver/template/viewtopic_body.html index 01b98bbf8f..af4a44bfc8 100644 --- a/phpBB/styles/prosilver/template/viewtopic_body.html +++ b/phpBB/styles/prosilver/template/viewtopic_body.html @@ -129,7 +129,7 @@ <!-- IF postrow.POSTER_POSTS != '' --><dd class="profile-posts"><strong>{L_POSTS}{L_COLON}</strong> {postrow.POSTER_POSTS}</dd><!-- ENDIF --> <!-- IF postrow.POSTER_JOINED --><dd class="profile-joined"><strong>{L_JOINED}{L_COLON}</strong> {postrow.POSTER_JOINED}</dd><!-- ENDIF --> - <!-- IF postrow.POSTER_WARNINGS --><dd class="profile-warnings"><strong>{L_WARNINGS}{L_COLON}</strong> <em>{postrow.POSTER_WARNINGS}</em></dd><!-- ENDIF --> + <!-- IF postrow.POSTER_WARNINGS --><dd class="profile-warnings"><strong>{L_WARNINGS}{L_COLON}</strong> {postrow.POSTER_WARNINGS}</dd><!-- ENDIF --> <!-- IF postrow.S_PROFILE_FIELD1 --> <!-- Use a construct like this to include admin defined profile fields. Replace FIELD1 with the name of your field. --> diff --git a/phpBB/styles/prosilver/theme/colours.css b/phpBB/styles/prosilver/theme/colours.css index d15d776b2a..f43dfcfcce 100644 --- a/phpBB/styles/prosilver/theme/colours.css +++ b/phpBB/styles/prosilver/theme/colours.css @@ -660,7 +660,7 @@ fieldset.polls dd div { background-image: url("./en/icon_user_online.gif"); } -dd.profile-warnings em { +dd.profile-warnings { color: #BC2A4D; } diff --git a/phpBB/styles/prosilver/theme/content.css b/phpBB/styles/prosilver/theme/content.css index f5a5650f87..1bc9100871 100644 --- a/phpBB/styles/prosilver/theme/content.css +++ b/phpBB/styles/prosilver/theme/content.css @@ -731,8 +731,7 @@ fieldset.polls dd div { height: auto !important; } -dd.profile-warnings em { - font-style: normal; +dd.profile-warnings { font-weight: bold; } |