diff options
Diffstat (limited to 'kvmd/web/css/mobile.css')
-rw-r--r-- | kvmd/web/css/mobile.css | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/kvmd/web/css/mobile.css b/kvmd/web/css/mobile.css index 6204afb6..fe306e77 100644 --- a/kvmd/web/css/mobile.css +++ b/kvmd/web/css/mobile.css @@ -28,9 +28,13 @@ } @media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) { - div.ctl-dropdown-content button { + div.ctl-dropdown-content button, select { height: 45px !important; } + div.ctl-dropdown-content button:enabled:hover, select:enabled:hover { + color: var(--fg-color-normal) !important; + background-color: var(--bg-color-normal) !important; + } div#stream-window { padding-top: 9px !important; @@ -66,4 +70,10 @@ div#keyboard-window-header { display: none !important } + + @supports (-webkit-appearance:none) { + div.stream-params div#stream-size-slider-box input[type=range] { + margin: 20px 0 20px 0 !important; + } + } } |