1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Fix dialog icons hover color (#4791)

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
This commit is contained in:
Alex Andreev 2022-02-02 16:47:33 +03:00 committed by GitHub
parent 576135f723
commit 334ab56f9d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View File

@ -43,6 +43,8 @@
} }
.pinIcon { .pinIcon {
--color-active: var(--textColorAccent);
transition: none; transition: none;
opacity: 0; opacity: 0;
margin-left: var(--padding); margin-left: var(--padding);

View File

@ -111,7 +111,7 @@
} }
&.active { &.active {
color: var(--textColorAccent); color: var(--color-active);
box-shadow: 0 0 0 2px var(--iconActiveBackground); box-shadow: 0 0 0 2px var(--iconActiveBackground);
background-color: var(--iconActiveBackground); background-color: var(--iconActiveBackground);
} }