ui: partial multi msd support

This commit is contained in:
Devaev Maxim
2019-11-08 01:28:42 +03:00
parent 8abe4b1ac9
commit b261c2695c
7 changed files with 104 additions and 35 deletions

View File

@@ -24,7 +24,7 @@ div#msd-menu {
width: 450px;
}
div#msd-menu div.msd-message, input.msd-message {
div#msd-menu .msd-feature-disabled, div.msd-message, input.msd-message {
display: none;
}

View File

@@ -66,18 +66,6 @@ div.stream-slider-box {
display: flex;
}
table#stream-auto-resize-box {
width: 100%;
border-collapse: collapse;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
@supports (-webkit-appearance: none) {
table#stream-auto-resize-box {
margin: 20px 0 20px 0 !important;
}
}
}
div#stream-mouse-buttons {
display: none;
}

View File

@@ -119,6 +119,18 @@ ul#menu li div.menu-item-content-text {
font-size: 14px;
}
ul#menu li div.menu-item-content-text table.one-line-switch {
width: 100%;
border-collapse: collapse;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
@supports (-webkit-appearance: none) {
ul#menu li div.menu-item-content-text table.one-line-switch {
margin: 20px 0 20px 0 !important;
}
}
}
ul#menu li div.menu-item-content button, select {
box-shadow: none;
border: none;

View File

@@ -96,3 +96,8 @@ div.switch-box input[type=checkbox].switch-checkbox:checked + label.switch-label
div.switch-box input[type=checkbox].switch-checkbox:checked + label.switch-label span.switch {
right: 0px;
}
div.switch-box input[type=checkbox].switch-checkbox:disabled + label.switch-label span.switch {
background: var(--cs-thumb-disabled-bg);
border: var(--border-default-2px);
}