Added the ability to select workspace underline color and highlight padding. (#130)

This commit is contained in:
Jas Singh
2024-08-14 21:36:57 -07:00
committed by GitHub
parent 250443de63
commit 83c0941bee
6 changed files with 9 additions and 13 deletions

View File

@@ -1,9 +1,5 @@
.bar {
.transparent {
background: transparent;
}
.bar-panel-container {
margin-top: if($bar-floating, $bar-margin_top, 0em);
margin-bottom: if($bar-floating, $bar-margin_bottom, 0em);

View File

@@ -42,14 +42,14 @@
}
&.underline {
border-bottom: 0.1em solid $bar-buttons-workspaces-numbered_active_text_color;
border-bottom: 0.1em solid $bar-buttons-workspaces-numbered_active_underline_color;
}
&.highlight {
color: $bar-buttons-workspaces-numbered_active_text_color;
color: $bar-buttons-workspaces-numbered_active_highlighted_text_color;
border-radius: $bar-buttons-workspaces-numbered_active_highlight_border;
background-color: $bar-buttons-workspaces-active;
padding: 0em 0.2em;
padding: 0em $bar-buttons-workspaces-numbered_active_highlight_padding;
}
}
}