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

Increasing opacity for non-interactive icons

Signed-off-by: alexfront <alex.andreev.email@gmail.com>
This commit is contained in:
alexfront 2020-08-07 11:48:14 +03:00
parent b4172b3982
commit e2abd8b7eb

View File

@ -7,6 +7,12 @@
user-select: none; user-select: none;
cursor: pointer; cursor: pointer;
&.interactive {
img {
opacity: .55;
}
}
&.active, &.interactive:hover { &.active, &.interactive:hover {
background-color: #fff; background-color: #fff;
@ -16,7 +22,6 @@
} }
img { img {
opacity: .55;
width: var(--size); width: var(--size);
height: var(--size); height: var(--size);
} }