diff options
author | Matt Friedman <maf675@gmail.com> | 2016-11-11 16:38:46 -0800 |
---|---|---|
committer | Matt Friedman <maf675@gmail.com> | 2016-11-11 16:38:46 -0800 |
commit | 0fd04f2e6fb8e9c8f63e7a131cb2161581ae125e (patch) | |
tree | 2c318743977886f8a3e824ef2654808b4a90a2eb /phpBB | |
parent | 74285b430801db773b7b69536f6e74fbf88917ea (diff) | |
download | forums-0fd04f2e6fb8e9c8f63e7a131cb2161581ae125e.tar forums-0fd04f2e6fb8e9c8f63e7a131cb2161581ae125e.tar.gz forums-0fd04f2e6fb8e9c8f63e7a131cb2161581ae125e.tar.bz2 forums-0fd04f2e6fb8e9c8f63e7a131cb2161581ae125e.tar.xz forums-0fd04f2e6fb8e9c8f63e7a131cb2161581ae125e.zip |
[ticket/14855] CSS updates
PHPBB3-14855
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/styles/prosilver/template/navbar_header.html | 4 | ||||
-rw-r--r-- | phpBB/styles/prosilver/theme/colours.css | 2 | ||||
-rw-r--r-- | phpBB/styles/prosilver/theme/common.css | 3 |
3 files changed, 4 insertions, 5 deletions
diff --git a/phpBB/styles/prosilver/template/navbar_header.html b/phpBB/styles/prosilver/template/navbar_header.html index 9179b659cd..e5f354a943 100644 --- a/phpBB/styles/prosilver/template/navbar_header.html +++ b/phpBB/styles/prosilver/template/navbar_header.html @@ -72,12 +72,12 @@ </li> <!-- IF S_DISPLAY_PM --> <li class="small-icon icon-pm rightside" data-skip-responsive="true"> - <a href="{U_PRIVATEMSGS}" role="menuitem"><span>{L_PRIVATE_MESSAGES} </span><!-- IF PRIVATE_MESSAGE_COUNT --><strong class="notification-alert">{PRIVATE_MESSAGE_COUNT}</strong><!-- ENDIF --></a> + <a href="{U_PRIVATEMSGS}" role="menuitem"><span>{L_PRIVATE_MESSAGES} </span><!-- IF PRIVATE_MESSAGE_COUNT --><strong class="badge">{PRIVATE_MESSAGE_COUNT}</strong><!-- ENDIF --></a> </li> <!-- ENDIF --> <!-- IF S_NOTIFICATIONS_DISPLAY --> <li class="small-icon icon-notification dropdown-container dropdown-{S_CONTENT_FLOW_END} rightside" data-skip-responsive="true"> - <a href="{U_VIEW_ALL_NOTIFICATIONS}" id="notification_list_button" class="dropdown-trigger"><span>{L_NOTIFICATIONS} </span><!-- IF NOTIFICATIONS_COUNT --><strong class="notification-alert">{NOTIFICATIONS_COUNT}</strong><!-- ENDIF --></a> + <a href="{U_VIEW_ALL_NOTIFICATIONS}" id="notification_list_button" class="dropdown-trigger"><span>{L_NOTIFICATIONS} </span><!-- IF NOTIFICATIONS_COUNT --><strong class="badge">{NOTIFICATIONS_COUNT}</strong><!-- ENDIF --></a> <!-- INCLUDE notification_dropdown.html --> </li> <!-- ENDIF --> diff --git a/phpBB/styles/prosilver/theme/colours.css b/phpBB/styles/prosilver/theme/colours.css index 5de35d4c63..9095e61369 100644 --- a/phpBB/styles/prosilver/theme/colours.css +++ b/phpBB/styles/prosilver/theme/colours.css @@ -1162,7 +1162,7 @@ li.notification-reported strong, li.notification-disapproved strong { color: #D31141; } -.notification-alert { +.badge { background-color: #D31141; color: #ffffff; } diff --git a/phpBB/styles/prosilver/theme/common.css b/phpBB/styles/prosilver/theme/common.css index 03d59ed6b8..c01625c394 100644 --- a/phpBB/styles/prosilver/theme/common.css +++ b/phpBB/styles/prosilver/theme/common.css @@ -1251,10 +1251,9 @@ ul.linklist:after, margin-left: 58px; } -.notification-alert { +.badge { border-radius: 10px; opacity: 0.8; - min-width: 10px; text-align: center; white-space: nowrap; font-size: 9px; |