webui: Modified styles.css to make the device group menu a bit larger (#8200)

* modified styles.css to make the device group menu a bit larger.  Was 200px, set to 800px.  Makes a huge difference in reaability.

* Changed .scrollable-menu to have a max-height of 600px

Changed .scrollable-menu to have a max-height of 600px after discussion, 600 seems a good compromise for size until something better can be found.

* force css update
This commit is contained in:
Chip Gwyn 2018-02-27 14:52:43 -05:00 committed by Neil Lathwood
parent 59f99f1962
commit bc405194db
2 changed files with 3 additions and 3 deletions

View File

@ -1559,7 +1559,7 @@ tr.search:nth-child(odd) {
.scrollable-menu {
height: auto;
max-height: 200px;
max-height: 600px;
overflow-x: hidden;
}

View File

@ -128,8 +128,8 @@ if (empty($config['favicon'])) {
<link href="css/MarkerCluster.Default.css" rel="stylesheet" type="text/css" />
<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=632417642" rel="stylesheet" type="text/css" />
<link href="<?php echo($config['stylesheet']); ?>?ver=253427421" rel="stylesheet" type="text/css" />
<link href="css/<?php echo $config['site_style']; ?>.css?ver=632417639" rel="stylesheet" type="text/css" />
<?php
foreach ((array)$config['webui']['custom_css'] as $custom_css) {