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 562558c..d4918e8 100755 --- a/views/servers/show.php +++ b/views/servers/show.php @@ -304,49 +304,62 @@ $canManage = $server_role === 'owner' || $server_role === 'manager';
- Notifications are sent to all users with access to this server when the agent reports values - exceeding these thresholds. Only the server owner can modify them. +
+ When the agent reports values above these thresholds, all users with access to this server + receive a notification and push alert. Only the server owner can modify them.