Tweak status bar styles

- Make there be a border at the outside on both the left and the right
- For the inner dividing borders, use left instead of right so that
  there's a slight gap between the left-aligned text and the border.
This commit is contained in:
Isaiah Odhner 2023-04-23 22:40:50 -04:00
parent 76e578cf4a
commit 4a308f22e1

View File

@ -312,11 +312,15 @@ MessageBox .window_content Horizontal {
width: 20; width: 20;
height: 100%; height: 100%;
content-align: left middle; content-align: left middle;
border: outer $panel-darken-2; border: none;
border-right: outer $panel-darken-1; border-top: outer $panel-darken-2;
border-bottom: outer $panel-lighten-1; border-bottom: outer $panel-lighten-1;
border-left: none; border-left: outer $panel-darken-1;
} }
#status_bar > #status_text { #status_bar > #status_text {
width: 1fr; width: 1fr;
} }
#status_bar > #status_dimensions {
/* this is the last division */
border-right: outer $panel-darken-1;
}