Skip to content

Commit

Permalink
Improvement: GTK3&4 - statusbar color
Browse files Browse the repository at this point in the history
  • Loading branch information
thekomer committed Mar 9, 2022
1 parent a293697 commit 6c49b51
Show file tree
Hide file tree
Showing 8 changed files with 67 additions and 0 deletions.
1 change: 1 addition & 0 deletions gtk-3.0/_widgets.scss
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
@import 'widgets/sidebar';
@import 'widgets/spinbuttons';
@import 'widgets/spinner';
@import 'widgets/statusbar';
@import 'widgets/switches';
@import 'widgets/toolbars';
@import 'widgets/tooltips';
Expand Down
11 changes: 11 additions & 0 deletions gtk-3.0/gtk-dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -4527,6 +4527,17 @@ spinner {
spinner:checked:disabled {
opacity: 0.5; }

/*************
* Statusbar *
************/
statusbar,
.statusbar {
background-color: #06070c;
color: #BFC3CD;
-GtkWidget-window-dragging: true;
padding: 0px;
box-shadow: inset 0 -1px rgba(0, 0, 0, 0.1); }

/**********
* Switch *
**********/
Expand Down
11 changes: 11 additions & 0 deletions gtk-3.0/gtk.css
Original file line number Diff line number Diff line change
Expand Up @@ -4527,6 +4527,17 @@ spinner {
spinner:checked:disabled {
opacity: 0.5; }

/*************
* Statusbar *
************/
statusbar,
.statusbar {
background-color: #06070c;
color: #BFC3CD;
-GtkWidget-window-dragging: true;
padding: 0px;
box-shadow: inset 0 -1px rgba(0, 0, 0, 0.1); }

/**********
* Switch *
**********/
Expand Down
12 changes: 12 additions & 0 deletions gtk-3.0/widgets/_statusbar.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
/*************
* Statusbar *
************/

statusbar,
.statusbar {
background-color: $headerbar_color;
color: $headerbar_fg_color;
-GtkWidget-window-dragging: true;
padding: 0px;
box-shadow: inset 0 -1px transparentize(black, 0.9);
}
1 change: 1 addition & 0 deletions gtk-4.0/_widgets.scss
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
@import 'widgets/sidebar';
@import 'widgets/spinbuttons';
@import 'widgets/spinner';
@import 'widgets/statusbar';
@import 'widgets/switches';
@import 'widgets/toolbars';
@import 'widgets/tooltips';
Expand Down
10 changes: 10 additions & 0 deletions gtk-4.0/gtk-dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -4508,6 +4508,16 @@ spinner {
spinner:checked:disabled {
opacity: 0.5; }

/*************
* Statusbar *
************/
statusbar,
.statusbar {
background-color: #06070c;
color: #BFC3CD;
padding: 0px;
box-shadow: inset 0 -1px rgba(0, 0, 0, 0.1); }

/**********
* Switch *
**********/
Expand Down
10 changes: 10 additions & 0 deletions gtk-4.0/gtk.css
Original file line number Diff line number Diff line change
Expand Up @@ -4508,6 +4508,16 @@ spinner {
spinner:checked:disabled {
opacity: 0.5; }

/*************
* Statusbar *
************/
statusbar,
.statusbar {
background-color: #06070c;
color: #BFC3CD;
padding: 0px;
box-shadow: inset 0 -1px rgba(0, 0, 0, 0.1); }

/**********
* Switch *
**********/
Expand Down
11 changes: 11 additions & 0 deletions gtk-4.0/widgets/_statusbar.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
/*************
* Statusbar *
************/

statusbar,
.statusbar {
background-color: $headerbar_color;
color: $headerbar_fg_color;
padding: 0px;
box-shadow: inset 0 -1px transparentize(black, 0.9);
}

0 comments on commit 6c49b51

Please sign in to comment.