* 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
26 lines
793 B
SCSS
26 lines
793 B
SCSS
.bar-menu_label {
|
|
color: if($bar-buttons-monochrome, $bar-buttons-icon, $bar-buttons-dashboard-icon);
|
|
font-size: 1.3em;
|
|
border-radius: $bar-buttons-radius;
|
|
}
|
|
|
|
.bar_item_box_visible.style2.dashboard {
|
|
background: if($bar-buttons-monochrome, $bar-buttons-icon, $bar-buttons-dashboard-background);
|
|
|
|
.bar-menu_label {
|
|
color: if($bar-buttons-monochrome, $bar-buttons-background, $bar-buttons-dashboard-icon);
|
|
}
|
|
}
|
|
|
|
.style2 .bar-menu_label {
|
|
padding: $bar-buttons-padding_y $bar-buttons-padding_x;
|
|
}
|
|
|
|
.bar_item_box_visible.dashboard {
|
|
border: if(
|
|
$bar-buttons-dashboard-enableBorder or $bar-buttons-enableBorders,
|
|
$bar-buttons-borderSize solid if($bar-buttons-monochrome, $bar-buttons-icon, $bar-buttons-dashboard-border),
|
|
0em
|
|
);
|
|
}
|