Skip to content

Commit

Permalink
BUGFix: GTK3&4 - sidebar color
Browse files Browse the repository at this point in the history
  • Loading branch information
thekomer committed Mar 3, 2022
1 parent d3d8314 commit 1cf5a4b
Show file tree
Hide file tree
Showing 6 changed files with 36 additions and 6 deletions.
2 changes: 1 addition & 1 deletion gtk-3.0/gtk-dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -4258,7 +4258,7 @@ stacksidebar row {
/*******************************************************************/
/*--*/
placessidebar.sidebar {
background-color: transparent;
background-color: #06070c;
/* background-image:linear-gradient(to right, #171e27 40px,
$sidebar_bg_color 35px,$sidebar_bg_color 36px,
$sidebar_bg_color 36px,$sidebar_bg_color 99%,
Expand Down
2 changes: 1 addition & 1 deletion gtk-3.0/gtk.css
Original file line number Diff line number Diff line change
Expand Up @@ -4258,7 +4258,7 @@ stacksidebar row {
/*******************************************************************/
/*--*/
placessidebar.sidebar {
background-color: transparent;
background-color: #06070c;
/* background-image:linear-gradient(to right, #171e27 40px,
$sidebar_bg_color 35px,$sidebar_bg_color 36px,
$sidebar_bg_color 36px,$sidebar_bg_color 99%,
Expand Down
3 changes: 2 additions & 1 deletion gtk-3.0/widgets/_sidebar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,8 @@ stacksidebar {

placessidebar{
&.sidebar{
background-color: transparent;
// background-color: transparent;
background-color: $sidebar_bg_color;
/* background-image:linear-gradient(to right, #171e27 40px,
$sidebar_bg_color 35px,$sidebar_bg_color 36px,
$sidebar_bg_color 36px,$sidebar_bg_color 99%,
Expand Down
16 changes: 15 additions & 1 deletion gtk-4.0/gtk-dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -4231,7 +4231,7 @@ stacksidebar row {
/*******************************************************************/
/*--*/
placessidebar.sidebar {
background-color: transparent;
background-color: #06070c;
/* background-image:linear-gradient(to right, #171e27 40px,
$sidebar_bg_color 35px,$sidebar_bg_color 36px,
$sidebar_bg_color 36px,$sidebar_bg_color 99%,
Expand Down Expand Up @@ -6015,6 +6015,20 @@ wnck-pager {
#whiskermenu-window box widget:hover {
color: #BFC3CD; }

#whiskermenu-window entry {
color: #fefefe;
border-color: rgba(255, 255, 255, 0.1);
background-color: rgba(255, 255, 255, 0.5);
box-shadow: none;
text-shadow: 0 1px black;
-gtk-icon-shadow: 0 1px black;
color: #BFC3CD; }
#whiskermenu-window entry:focus {
border-color: #ff6a00; }

#whiskermenu-button {
border-radius: 0.6em; }

#whiskermenu-window button {
background-color: transparent;
border: none;
Expand Down
16 changes: 15 additions & 1 deletion gtk-4.0/gtk.css
Original file line number Diff line number Diff line change
Expand Up @@ -4231,7 +4231,7 @@ stacksidebar row {
/*******************************************************************/
/*--*/
placessidebar.sidebar {
background-color: transparent;
background-color: #06070c;
/* background-image:linear-gradient(to right, #171e27 40px,
$sidebar_bg_color 35px,$sidebar_bg_color 36px,
$sidebar_bg_color 36px,$sidebar_bg_color 99%,
Expand Down Expand Up @@ -6015,6 +6015,20 @@ wnck-pager {
#whiskermenu-window box widget:hover {
color: #BFC3CD; }

#whiskermenu-window entry {
color: #fefefe;
border-color: rgba(255, 255, 255, 0.1);
background-color: rgba(255, 255, 255, 0.5);
box-shadow: none;
text-shadow: 0 1px black;
-gtk-icon-shadow: 0 1px black;
color: #BFC3CD; }
#whiskermenu-window entry:focus {
border-color: #ff6a00; }

#whiskermenu-button {
border-radius: 0.6em; }

#whiskermenu-window button {
background-color: transparent;
border: none;
Expand Down
3 changes: 2 additions & 1 deletion gtk-4.0/widgets/_sidebar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,8 @@ stacksidebar {

placessidebar{
&.sidebar{
background-color: transparent;
// background-color: transparent;
background-color: $sidebar_bg_color;
/* background-image:linear-gradient(to right, #171e27 40px,
$sidebar_bg_color 35px,$sidebar_bg_color 36px,
$sidebar_bg_color 36px,$sidebar_bg_color 99%,
Expand Down

0 comments on commit 1cf5a4b

Please sign in to comment.