webui: Update badge background for selected pagemenu item (mono.css) (#8157)

* Update badge background for selected pagemenu item

This brings the background color in line with the user notification number badge background in the upper right corner.
The previous background was too bright for mono.css to properly read the white menu item text.

* CSS cache busting

Change last two digits to 42, because reasons.
This commit is contained in:
Florian Beer
2018-01-29 22:58:45 +01:00
committed by Neil Lathwood
parent b2762d9fa7
commit 44d5a592f1
2 changed files with 8 additions and 1 deletions

View File

@ -114,3 +114,10 @@
100% { transform: rotate(360deg); transform: rotate(360deg); }
}
.pagemenu-selected {
background-color: #777;
border: 0;
box-shadow: none;
-moz-box-shadow: none;
-webkit-box-shadow: none;
}

View File

@ -129,7 +129,7 @@ if (empty($config['favicon'])) {
<link href="css/leaflet.awesome-markers.css" rel="stylesheet" type="text/css" />
<link href="css/select2.min.css" rel="stylesheet" type="text/css" />
<link href="<?php echo($config['stylesheet']); ?>?ver=291727421" rel="stylesheet" type="text/css" />
<link href="css/<?php echo $config['site_style']; ?>.css?ver=632417639" rel="stylesheet" type="text/css" />
<link href="css/<?php echo $config['site_style']; ?>.css?ver=632417642" rel="stylesheet" type="text/css" />
<?php
foreach ((array)$config['webui']['custom_css'] as $custom_css) {