diff options
author | Devaev Maxim <[email protected]> | 2018-08-27 07:48:05 +0300 |
---|---|---|
committer | Devaev Maxim <[email protected]> | 2018-08-27 07:48:05 +0300 |
commit | 95ea69d43f0e6b0da33f06eb1360bd1e94fbd624 (patch) | |
tree | cf90e19292e30ea3a0a37035cee5d1300a115d17 /kvmd/web | |
parent | 1fdd929f2a5d7775f6b9e77fd3487dfb511c0928 (diff) |
some mobile improvements
Diffstat (limited to 'kvmd/web')
-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; + } + } } |