Skip to content

Commit

Permalink
Improvements: GTK3&4 - making panel darker allaround; transparency sh…
Browse files Browse the repository at this point in the history
…ould be set by DE tools
  • Loading branch information
thekomer committed Feb 10, 2022
1 parent ac93aa2 commit 7b147c5
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 27 deletions.
2 changes: 1 addition & 1 deletion gtk-3.0/_colors.scss
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ $question_color: $cyan;

// Panel colors
$panel_darker: $headerbar_color; //#06060A;
$panel_bg_color: rgba($panel_darker, 0.85); //$panel_bg_color: rgba($base_color, 1);
$panel_bg_color: $headerbar_color; // rgba($panel_darker, 0.85); //$panel_bg_color: rgba($base_color, 1);
$panel_fg_color: white;
$panel_borders_color: rgba($panel_darker, 0.8); //$panel_borders_color: rgba($base_color, 0.8);

Expand Down
10 changes: 5 additions & 5 deletions gtk-3.0/gtk-dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -5943,7 +5943,7 @@ window.background.budgie-settings-window.csd > box.horizontal > stack > scrolled
* Xfce Panel *
**************/
.xfce4-panel.panel {
background-color: rgba(6, 7, 12, 0.85);
background-color: #06070c;
text-shadow: none;
-gtk-icon-shadow: none; }

Expand Down Expand Up @@ -6314,9 +6314,9 @@ window.thunar statusbar {
background-color: transparent;
transition: all 100ms ease-in-out; }
.panel.maximized {
background-color: rgba(6, 7, 12, 0.85); }
background-color: #06070c; }
.panel.translucent {
background-color: rgba(6, 7, 12, 0.35); }
background-color: rgba(6, 7, 12, 0.5); }
.panel.color-light.translucent {
background-color: rgba(255, 255, 255, 0.85); }

Expand Down Expand Up @@ -6710,10 +6710,10 @@ ConversationListView {
* LightDm *
***********/
#panel_window {
background-color: rgba(6, 7, 12, 0.65);
background-color: rgba(6, 7, 12, 0.8);
color: white;
font-weight: normal;
box-shadow: inset 0 -1px rgba(0, 0, 0, 0.85); }
box-shadow: inset 0 -1px black; }
#panel_window .menubar,
#panel_window .menubar > .menuitem menubar,
#panel_window menubar > menuitem {
Expand Down
10 changes: 5 additions & 5 deletions gtk-3.0/gtk.css
Original file line number Diff line number Diff line change
Expand Up @@ -5943,7 +5943,7 @@ window.background.budgie-settings-window.csd > box.horizontal > stack > scrolled
* Xfce Panel *
**************/
.xfce4-panel.panel {
background-color: rgba(6, 7, 12, 0.85);
background-color: #06070c;
text-shadow: none;
-gtk-icon-shadow: none; }

Expand Down Expand Up @@ -6314,9 +6314,9 @@ window.thunar statusbar {
background-color: transparent;
transition: all 100ms ease-in-out; }
.panel.maximized {
background-color: rgba(6, 7, 12, 0.85); }
background-color: #06070c; }
.panel.translucent {
background-color: rgba(6, 7, 12, 0.35); }
background-color: rgba(6, 7, 12, 0.5); }
.panel.color-light.translucent {
background-color: rgba(255, 255, 255, 0.85); }

Expand Down Expand Up @@ -6710,10 +6710,10 @@ ConversationListView {
* LightDm *
***********/
#panel_window {
background-color: rgba(6, 7, 12, 0.65);
background-color: rgba(6, 7, 12, 0.8);
color: white;
font-weight: normal;
box-shadow: inset 0 -1px rgba(0, 0, 0, 0.85); }
box-shadow: inset 0 -1px black; }
#panel_window .menubar,
#panel_window .menubar > .menuitem menubar,
#panel_window menubar > menuitem {
Expand Down
16 changes: 8 additions & 8 deletions gtk-4.0/gtk-dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -5859,15 +5859,15 @@ window.background.budgie-settings-window.csd > box.horizontal > stack > scrolled
* Xfce Panel *
**************/
.xfce4-panel.panel {
background-color: rgba(6, 6, 10, 0.85);
background-color: #06070c;
text-shadow: none;
-gtk-icon-shadow: none; }

#tasklist-button {
color: rgba(255, 255, 255, 0.8);
border-radius: 0;
border: none;
background-color: rgba(6, 6, 10, 0); }
background-color: rgba(6, 7, 12, 0); }
#tasklist-button:hover {
color: white;
background-color: rgba(0, 0, 0, 0.17); }
Expand All @@ -5880,7 +5880,7 @@ window.background.budgie-settings-window.csd > box.horizontal > stack > scrolled
color: white;
border-radius: 0;
border: none;
background-color: rgba(6, 6, 10, 0); }
background-color: rgba(6, 7, 12, 0); }
.xfce4-panel.panel button:hover {
color: #fefefe;
border: none;
Expand All @@ -5900,7 +5900,7 @@ window.background.budgie-settings-window.csd > box.horizontal > stack > scrolled
color: white;
border-radius: 0;
border: none;
background-color: rgba(6, 6, 10, 0); }
background-color: rgba(6, 7, 12, 0); }
.xfce4-panel.panel button.flat:hover {
color: #fefefe;
border: none;
Expand Down Expand Up @@ -6214,9 +6214,9 @@ window.thunar statusbar {
background-color: transparent;
transition: all 100ms ease-in-out; }
.panel.maximized {
background-color: rgba(6, 6, 10, 0.85); }
background-color: #06070c; }
.panel.translucent {
background-color: rgba(6, 6, 10, 0.35); }
background-color: rgba(6, 7, 12, 0.5); }
.panel.color-light.translucent {
background-color: rgba(255, 255, 255, 0.85); }

Expand Down Expand Up @@ -6579,10 +6579,10 @@ ConversationListView {
* LightDm *
***********/
#panel_window {
background-color: rgba(6, 6, 10, 0.65);
background-color: rgba(6, 7, 12, 0.8);
color: white;
font-weight: normal;
box-shadow: inset 0 -1px rgba(0, 0, 0, 0.85); }
box-shadow: inset 0 -1px black; }
#panel_window .menubar,
#panel_window .menubar > .menuitem menubar,
#panel_window menubar > menuitem {
Expand Down
16 changes: 8 additions & 8 deletions gtk-4.0/gtk.css
Original file line number Diff line number Diff line change
Expand Up @@ -5859,15 +5859,15 @@ window.background.budgie-settings-window.csd > box.horizontal > stack > scrolled
* Xfce Panel *
**************/
.xfce4-panel.panel {
background-color: rgba(6, 6, 10, 0.85);
background-color: #06070c;
text-shadow: none;
-gtk-icon-shadow: none; }

#tasklist-button {
color: rgba(255, 255, 255, 0.8);
border-radius: 0;
border: none;
background-color: rgba(6, 6, 10, 0); }
background-color: rgba(6, 7, 12, 0); }
#tasklist-button:hover {
color: white;
background-color: rgba(0, 0, 0, 0.17); }
Expand All @@ -5880,7 +5880,7 @@ window.background.budgie-settings-window.csd > box.horizontal > stack > scrolled
color: white;
border-radius: 0;
border: none;
background-color: rgba(6, 6, 10, 0); }
background-color: rgba(6, 7, 12, 0); }
.xfce4-panel.panel button:hover {
color: #fefefe;
border: none;
Expand All @@ -5900,7 +5900,7 @@ window.background.budgie-settings-window.csd > box.horizontal > stack > scrolled
color: white;
border-radius: 0;
border: none;
background-color: rgba(6, 6, 10, 0); }
background-color: rgba(6, 7, 12, 0); }
.xfce4-panel.panel button.flat:hover {
color: #fefefe;
border: none;
Expand Down Expand Up @@ -6214,9 +6214,9 @@ window.thunar statusbar {
background-color: transparent;
transition: all 100ms ease-in-out; }
.panel.maximized {
background-color: rgba(6, 6, 10, 0.85); }
background-color: #06070c; }
.panel.translucent {
background-color: rgba(6, 6, 10, 0.35); }
background-color: rgba(6, 7, 12, 0.5); }
.panel.color-light.translucent {
background-color: rgba(255, 255, 255, 0.85); }

Expand Down Expand Up @@ -6579,10 +6579,10 @@ ConversationListView {
* LightDm *
***********/
#panel_window {
background-color: rgba(6, 6, 10, 0.65);
background-color: rgba(6, 7, 12, 0.8);
color: white;
font-weight: normal;
box-shadow: inset 0 -1px rgba(0, 0, 0, 0.85); }
box-shadow: inset 0 -1px black; }
#panel_window .menubar,
#panel_window .menubar > .menuitem menubar,
#panel_window menubar > menuitem {
Expand Down

0 comments on commit 7b147c5

Please sign in to comment.