Fix the global settings level selector style

Signed-off-by: RD WebDesign <github@rdwebdesign.com.br>
This commit is contained in:
RD WebDesign
2023-03-16 19:19:40 -03:00
parent 0ffe49eb38
commit 2ad9b8af77
2 changed files with 9 additions and 1 deletions
+1 -1
View File
@@ -65,7 +65,7 @@ function startsWith($string, $startString)
<?php if (startsWith($scriptname, 'settings-')) { ?>
<li class="nav-item">
<p class="navbar-text">
Settings level: <select id="settings-level">
Settings level: <select id="settings-level" class="form-control input-sm">
<option value="0">Basic</option>
<option value="1">Advanced</option>
<option value="2">Expert</option>
+8
View File
@@ -869,6 +869,14 @@ body:not(.lcars) .filter_types [class*="icheck-"] > input:first-child:checked +
}
}
/* Global settings level selector */
#settings-level {
display: inline-block;
width: auto;
height: 2.2em;
border-radius: 4px;
}
.navbar-nav {
height: 50px;
}