diff --git a/public/assets/css/style.css b/public/assets/css/style.css index a3615e6..3f4142a 100755 --- a/public/assets/css/style.css +++ b/public/assets/css/style.css @@ -3134,3 +3134,39 @@ textarea.form-input { background: var(--bg-hover, #e9ecef); border-color: var(--text-muted, #888); } + +input[type="range"]::-webkit-slider-thumb { + -webkit-appearance: none; + appearance: none; + width: 18px; + height: 18px; + border-radius: 50%; + background: var(--text-primary); + border: 2px solid var(--bg-card); + box-shadow: 0 1px 4px rgba(0,0,0,0.4); + cursor: pointer; + transition: transform 0.1s; +} + +input[type="range"]::-webkit-slider-thumb:hover { + transform: scale(1.15); +} + +input[type="range"]::-moz-range-thumb { + width: 18px; + height: 18px; + border-radius: 50%; + background: var(--text-primary); + border: 2px solid var(--bg-card); + box-shadow: 0 1px 4px rgba(0,0,0,0.4); + cursor: pointer; +} + +input[type="range"]:focus { + outline: none; +} + +input[type="range"]::-moz-range-track { + height: 6px; + border-radius: 3px; +} diff --git a/views/servers/show.php b/views/servers/show.php index 3252bf6..d4918e8 100755 --- a/views/servers/show.php +++ b/views/servers/show.php @@ -322,33 +322,35 @@ $canManage = $server_role === 'owner' || $server_role === 'manager'; ]; ?> $res): ?>
-
+
-
+
-
-