* Implemented configurable and toggleable button borders. * Improve and simplify border logic * Fix hidden label icon borders. * Removed button hover property from bar buttons, they dim on hover now by default. * Rename file. * Update catppuccin normal theme's storage module color. * update mocha items * update mochas * Update themes to account for borders
20 lines
465 B
SCSS
20 lines
465 B
SCSS
.systray button:not(:first-child) {
|
|
margin-left: $bar-buttons-systray-spacing;
|
|
}
|
|
|
|
.systray-icon {
|
|
font-size: 1.3em;
|
|
}
|
|
|
|
.style2.systray {
|
|
padding: $bar-buttons-padding_y $bar-buttons-padding_x;
|
|
}
|
|
|
|
.bar_item_box_visible.systray {
|
|
border: if(
|
|
$bar-buttons-systray-enableBorder or $bar-buttons-enableBorders,
|
|
$bar-buttons-borderSize solid if($bar-buttons-monochrome, $bar-buttons-icon, $bar-buttons-systray-border),
|
|
0em
|
|
);
|
|
}
|