* Branch protection check. * Move button spacing config into the Configuration section instead of Theming. * Partially Resolves #26 - Added the ability to configure outer spacing on the bar. * Renamed all class names for buttons so they can be styled with margins. * Added configurable spacing to buttons. * Fixed styling for network module when using wifi. * Fixed ghost margins that occur when labels are disabled in the bar buttons. * Change the default page of the settings dialog to configuration.
13 lines
364 B
SCSS
13 lines
364 B
SCSS
@import "../colors";
|
|
|
|
.bar-button-icon.notifications {
|
|
color: if($bar-buttons-monochrome, $bar-buttons-icon, $bar-buttons-notifications-icon);
|
|
font-size: 1.3em;
|
|
min-width: 1em;
|
|
}
|
|
|
|
.bar-button-label.notifications {
|
|
color: if($bar-buttons-monochrome, $bar-buttons-text, $bar-buttons-notifications-total);
|
|
margin-left: $bar-buttons-notifications-spacing;
|
|
}
|