Skip to content

Commit

Permalink
Improvement: Whisker menu colors & GTK entry shape
Browse files Browse the repository at this point in the history
  • Loading branch information
thekomer committed Jan 23, 2022
1 parent 68aed16 commit 1127ea7
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 13 deletions.
10 changes: 7 additions & 3 deletions gtk-3.0/apps/_xfce.scss
Original file line number Diff line number Diff line change
Expand Up @@ -127,17 +127,21 @@ wnck-pager {
padding: 2px;
margin: 1px 0px;
&:hover {
@include button(hover-header, $selected_bg_color, $selected_fg_color);
//background: transparentize($fg_color, 0.95);
//@include button(hover-header, $selected_bg_color, $selected_fg_color);
@include button(hover-header);
background: transparentize($fg_color, 0.90);
border-radius: 0;
box-shadow: none;
-gtk-icon-effect: highlight;
}
&:checked {
// background-color: $selected_bg_color;
@include button(active-header);
border-radius: 0;
//border-radius: 0;
box-shadow: none;
&:hover{
color: white;
}
}
}

Expand Down
8 changes: 5 additions & 3 deletions gtk-3.0/gtk-dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -1838,7 +1838,7 @@ entry {
padding-left: 8px;
padding-right: 8px;
border: 1px solid;
border-radius: 0.5em;
border-radius: 1em;
transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
color: #BFC3CD;
border-color: rgba(255, 255, 255, 0.05);
Expand Down Expand Up @@ -5953,10 +5953,11 @@ wnck-pager {
padding: 2px;
margin: 1px 0px; }
#whiskermenu-window button:hover {
color: #fefefe;
color: #ff6a00;
border-radius: 0;
text-shadow: none;
border: none;
background: rgba(191, 195, 205, 0.1);
border-radius: 0;
box-shadow: none;
-gtk-icon-effect: highlight; }
Expand All @@ -5965,8 +5966,9 @@ wnck-pager {
background: linear-gradient(to right, #ff3300, #ffa100);
box-shadow: 0px 0px 5px rgba(255, 106, 0, 0.98);
color: white;
border-radius: 0;
box-shadow: none; }
#whiskermenu-window button:checked:hover {
color: white; }

#whiskermenu-window treeview {
background-color: transparent;
Expand Down
8 changes: 5 additions & 3 deletions gtk-3.0/gtk.css
Original file line number Diff line number Diff line change
Expand Up @@ -1838,7 +1838,7 @@ entry {
padding-left: 8px;
padding-right: 8px;
border: 1px solid;
border-radius: 0.5em;
border-radius: 1em;
transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
color: #BFC3CD;
border-color: rgba(255, 255, 255, 0.05);
Expand Down Expand Up @@ -5953,10 +5953,11 @@ wnck-pager {
padding: 2px;
margin: 1px 0px; }
#whiskermenu-window button:hover {
color: #fefefe;
color: #ff6a00;
border-radius: 0;
text-shadow: none;
border: none;
background: rgba(191, 195, 205, 0.1);
border-radius: 0;
box-shadow: none;
-gtk-icon-effect: highlight; }
Expand All @@ -5965,8 +5966,9 @@ wnck-pager {
background: linear-gradient(to right, #ff3300, #ffa100);
box-shadow: 0px 0px 5px rgba(255, 106, 0, 0.98);
color: white;
border-radius: 0;
box-shadow: none; }
#whiskermenu-window button:checked:hover {
color: white; }

#whiskermenu-window treeview {
background-color: transparent;
Expand Down
2 changes: 1 addition & 1 deletion gtk-3.0/widgets/_entries.scss
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ entry {
padding-left: 8px;
padding-right: 8px;
border: 1px solid;
border-radius: 0.5em; // used to be "border-radius: 3px;"
border-radius: 1em; // used to be "border-radius: 3px;"
transition: all 200ms $ease-out-quad;

@include entry(normal);
Expand Down
2 changes: 1 addition & 1 deletion gtk-4.0/gtk-dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -1821,7 +1821,7 @@ entry {
padding-left: 8px;
padding-right: 8px;
border: 1px solid;
border-radius: 0.5em;
border-radius: 1em;
transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
color: #BFC3CD;
border-color: rgba(255, 255, 255, 0.05);
Expand Down
2 changes: 1 addition & 1 deletion gtk-4.0/gtk.css
Original file line number Diff line number Diff line change
Expand Up @@ -1821,7 +1821,7 @@ entry {
padding-left: 8px;
padding-right: 8px;
border: 1px solid;
border-radius: 0.5em;
border-radius: 1em;
transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
color: #BFC3CD;
border-color: rgba(255, 255, 255, 0.05);
Expand Down
2 changes: 1 addition & 1 deletion gtk-4.0/widgets/_entries.scss
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ entry {
padding-left: 8px;
padding-right: 8px;
border: 1px solid;
border-radius: 0.5em; // used to be "border-radius: 3px;"
border-radius: 1em; // used to be "border-radius: 3px;"
transition: all 200ms $ease-out-quad;

@include entry(normal);
Expand Down

0 comments on commit 1127ea7

Please sign in to comment.