fix svg hover

This commit is contained in:
tophf 2022-02-16 00:23:39 +03:00
parent d673354edd
commit 815f8aa26d
2 changed files with 5 additions and 7 deletions

View File

@ -607,10 +607,10 @@
}
#search-replace-dialog[data-type="replace"] button:hover svg,
#search-replace-dialog svg:hover {
fill: inherit;
fill: var(--cmin);
}
#search-replace-dialog [data-action="case"]:hover {
color: inherit;
color: var(--cmin);
}
#search-replace-dialog [data-action="clear"] {
background-color: ${colors.input.bg.replace(/[^,]+$/, '') + '.75)'};

View File

@ -455,11 +455,6 @@ a:hover {
margin: 0 .5em;
}
.newUI .entry .svg-icon.checked,
.newUI .entry:hover .svg-icon.checked {
fill: var(--fg);
}
.newUI .entry input[type="checkbox"]:not(.slider) {
pointer-events: all;
}
@ -526,6 +521,9 @@ a:hover {
fill: var(--c40);
}
button .svg-icon,
.newUI .entry .svg-icon.checked,
.newUI .entry:hover .svg-icon.checked,
.newUI .entry:hover .svg-icon:hover {
fill: var(--fg);
}