Files
Vladyslav Hroshev 08ac0aa8d3 Fixed notifications, updated borders and paddings
- Fixed notifications in GNOME 47 (likely Ubuntu) and older (Fixes #64);
- Fixed big margins between messages for GNOME 47 and older;
- Fixed margins in modal for GNOME 46 and oler;
- Adapted paddings and borders in quick settings and in screenshot panel;
- Changed styles in tooltips and popup messages;
2025-07-04 20:51:57 +03:00

63 lines
1.4 KiB
CSS

/* OSD */
.switcher-list, /* alt + tab */
.resize-popup, /* i dunno what is that :( */
.workspace-switcher, /* ctrl + alt + arr_left/arr_right */
.osd-window /* volume/brightness/.. switcher */ {
color: TEXT-PRIMARY-COLOR;
background-color: BACKGROUND-COLOR;
border: 1px solid BORDER-MENU-SHADOW;
border-radius: 18px;
box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.07);
}
/* alt + tab */
.switcher-list {
border-radius: 30px;
padding: 10px;
}
/* running apps in switcher list */
.switcher-list .item-box {
border-radius: 22px;
padding: 8px;
color: TEXT-PRIMARY-COLOR;
border: 3px solid transparent;
background-color: transparent;
}
.switcher-list .item-box:hover,
.switcher-list .item-box:focus,
.switcher-list .item-box:selected,
.switcher-list .item-box:outlined {
background-color: ACCENT-DISABLED_HOVER;
/* box-shadow: inset 0 0 0 2px ACCENT-SECONDARY-COLOR; */
border: 3px solid ACCENT-SECONDARY-COLOR;
}
/* arrow if app has multiple windows */
.switcher-arrow {
color: TEXT-DISABLED-COLOR;
border-color: transparent;
}
.switcher-arrow:highlighted {
color: TEXT-SECONDARY-COLOR;
}
/* ctrl + alt + arr_left/arr_right */
.ws-switcher-indicator {
background-color: TEXT-SECONDARY-COLOR;
border-radius: 99px;
padding: 2.5px;
margin: 7.5px 5px;
}
.ws-switcher-indicator:active {
background-color: TEXT-PRIMARY-COLOR;
padding: 5px 20px;
margin: 5px;
}