summaryrefslogtreecommitdiff
path: root/kvmd/web/css
diff options
context:
space:
mode:
authorDevaev Maxim <[email protected]>2018-09-07 00:28:48 +0300
committerDevaev Maxim <[email protected]>2018-09-07 00:28:48 +0300
commit3a68c2ae1001f1207e639925d10d5f88f62d4430 (patch)
tree8294c662496faf1d7d0058fb1dd0479e235e677b /kvmd/web/css
parent87e3b96a901e583f90432c07f64d303ae2e6bd05 (diff)
ios safari fixes
Diffstat (limited to 'kvmd/web/css')
-rw-r--r--kvmd/web/css/main.css3
-rw-r--r--kvmd/web/css/mobile.css2
-rw-r--r--kvmd/web/css/stream.css26
3 files changed, 13 insertions, 18 deletions
diff --git a/kvmd/web/css/main.css b/kvmd/web/css/main.css
index 8290ef42..d2d434d7 100644
--- a/kvmd/web/css/main.css
+++ b/kvmd/web/css/main.css
@@ -172,6 +172,9 @@ div.ctl-dropdown-content hr {
border: none;
border-top: var(--dark-border);
}
+div.ctl-dropdown-content-buttons {
+ background-color: var(--bg-color-normal);
+}
div.ctl-dropdown-content-text {
margin: 10px 15px 10px 15px;
font-size: 14px;
diff --git a/kvmd/web/css/mobile.css b/kvmd/web/css/mobile.css
index a672d575..fdec7fc3 100644
--- a/kvmd/web/css/mobile.css
+++ b/kvmd/web/css/mobile.css
@@ -80,7 +80,7 @@
}
@supports (-webkit-appearance:none) {
- div.stream-params div#stream-size-slider-box input[type=range] {
+ div#stream-size-slider-box input[type=range] {
margin: 20px 0 20px 0 !important;
}
}
diff --git a/kvmd/web/css/stream.css b/kvmd/web/css/stream.css
index dc510a62..84aa0253 100644
--- a/kvmd/web/css/stream.css
+++ b/kvmd/web/css/stream.css
@@ -35,26 +35,18 @@ div.stream-box-mouse-enabled {
cursor: url("../svg/stream-mouse-cursor.svg"), pointer;
}
-div.stream-params {
- -webkit-user-select: text;
- -moz-user-select: text;
- user-select: text;
- font-size: 12px;
- margin: 5px 15px 5px 15px;
-}
-
-div.stream-params select#stream-resolution-select {
+select#stream-resolution-select {
margin: 8px 0 8px 0;
}
-div.stream-params span#stream-size-value {
+span#stream-size-value {
}
-div.stream-params div#stream-size-slider-box {
+div#stream-size-slider-box {
margin-top: 5px;
display: flex;
}
@supports (-webkit-appearance:none) {
- div.stream-params div#stream-size-slider-box input[type=range] {
+ div#stream-size-slider-box input[type=range] {
cursor: pointer;
outline: none;
width: 100%;
@@ -65,7 +57,7 @@ div.stream-params div#stream-size-slider-box {
}
}
@supports not (-webkit-appearance:none) {
- div.stream-params div#stream-size-slider-box input[type=range] {
+ div#stream-size-slider-box input[type=range] {
cursor: pointer;
outline: none;
width: 100%;
@@ -74,12 +66,12 @@ div.stream-params div#stream-size-slider-box {
margin-right: 0;
}
}
-div.stream-params div#stream-size-slider-box input[type=range]::-webkit-slider-runnable-track {
+div#stream-size-slider-box input[type=range]::-webkit-slider-runnable-track {
height: 5px;
background: var(--bg-color-light);
border-radius: 3px;
}
-div.stream-params div#stream-size-slider-box input[type=range]::-webkit-slider-thumb {
+div#stream-size-slider-box input[type=range]::-webkit-slider-thumb {
border: var(--intensive-border);
height: 18px;
width: 18px;
@@ -88,12 +80,12 @@ div.stream-params div#stream-size-slider-box input[type=range]::-webkit-slider-t
-webkit-appearance: none;
margin-top: -7px;
}
-div.stream-params div#stream-size-slider-box input[type=range]::-moz-range-track {
+div#stream-size-slider-box input[type=range]::-moz-range-track {
height: 5px;
background: var(--bg-color-light);
border-radius: 3px;
}
-div.stream-params div#stream-size-slider-box input[type=range]::-moz-range-thumb {
+div#stream-size-slider-box input[type=range]::-moz-range-thumb {
border: var(--intensive-border);
height: 18px;
width: 18px;