Fix: Prevent hover on checkboxes from working on touch devices
This commit is contained in:
parent
39a5cdcbb2
commit
a4d154475c
1 changed files with 11 additions and 11 deletions
|
|
@ -801,11 +801,6 @@ progress+span {
|
||||||
height: calc(100% - 0em);
|
height: calc(100% - 0em);
|
||||||
}
|
}
|
||||||
|
|
||||||
.checkboxContainer:hover .checkboxOutline:not(.multiSelectCheckboxOutline) {
|
|
||||||
border-color: var(--checkboxCheckedBgColor);
|
|
||||||
border-width: calc(2 * var(--borderWidth));
|
|
||||||
}
|
|
||||||
|
|
||||||
.checkboxOutline.multiSelectCheckboxOutline {
|
.checkboxOutline.multiSelectCheckboxOutline {
|
||||||
border-radius: var(--largeRadius);
|
border-radius: var(--largeRadius);
|
||||||
border-width: 0;
|
border-width: 0;
|
||||||
|
|
@ -1223,6 +1218,17 @@ div[data-role=controlgroup] a.ui-btn-active {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
background-color: rgb(255 255 255 / 5%);
|
background-color: rgb(255 255 255 / 5%);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.emby-select-withcolor:hover:not(.emby-select[disabled], :focus),
|
||||||
|
.emby-input:hover:not(:focus),
|
||||||
|
.emby-textarea:hover:not(:focus) {
|
||||||
|
border-color: var(--dimTextColor) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.checkboxContainer:hover .checkboxOutline:not(.multiSelectCheckboxOutline) {
|
||||||
|
border-color: var(--checkboxCheckedBgColor);
|
||||||
|
border-width: calc(2 * var(--borderWidth));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.paper-icon-button-light:active:not(:disabled) {
|
.paper-icon-button-light:active:not(:disabled) {
|
||||||
|
|
@ -1253,12 +1259,6 @@ div[data-role=controlgroup] a.ui-btn-active {
|
||||||
outline: thin solid var(--highlightOutlineColor) !important;
|
outline: thin solid var(--highlightOutlineColor) !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.emby-select-withcolor:hover:not(.emby-select[disabled], :focus),
|
|
||||||
.emby-input:hover:not(:focus),
|
|
||||||
.emby-textarea:hover:not(:focus) {
|
|
||||||
border-color: var(--dimTextColor) !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.emby-select-withcolor>option {
|
.emby-select-withcolor>option {
|
||||||
color: inherit;
|
color: inherit;
|
||||||
background-color: var(--selectorBackgroundColor);
|
background-color: var(--selectorBackgroundColor);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue