Added more contrast to the selected item in Alt + Tab (Resolves #29)

This commit is contained in:
Vladyslav Hroshev
2024-06-25 20:17:21 +03:00
parent ea62498ad3
commit 5971b15d81

View File

@@ -12,12 +12,17 @@
}
/* alt + tab */
.switcher-list { border-radius: 24px; }
.switcher-list {
border-radius: 30px;
padding: 10px;
}
/* running apps in switcher list */
.switcher-list .item-box {
border-radius: 20px;
border-radius: 22px;
padding: 8px;
color: TEXT-PRIMARY-COLOR;
border: 3px solid transparent;
background-color: transparent;
}
@@ -25,8 +30,9 @@
.switcher-list .item-box:focus,
.switcher-list .item-box:selected,
.switcher-list .item-box:outlined {
background-color: ACCENT-DISABLED-COLOR;
box-shadow: inset 0 0 0 1px BORDER-SHADOW;
background-color: ACCENT-DISABLED_HOVER;
/* box-shadow: inset 0 0 0 2px ACCENT-SECONDARY-COLOR; */
border: 3px solid ACCENT-SECONDARY-COLOR;
}