Skip to content

Commit

Permalink
Gtk-3.20:xfce Add whisker menu style. Fixes #666
Browse files Browse the repository at this point in the history
  • Loading branch information
khurshid-alam committed Jun 20, 2018
1 parent 8083a96 commit 5869b68
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions src/gtk-3.20/scss/apps/_xfce.scss
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,48 @@
}
}
}

#whiskermenu-window {
* {
border-color: border_normal($dark_bg_color);
outline: none;
}

background-color: $dark_bg_color;
color: $dark_fg_color;

entry {
background-color: shade($dark_bg_color, 1.2);
color: $dark_fg_color;
}

button {
font-weight: bold;
padding: 6px 12px;
margin: 3px 0px;
border: none;
@include linear_gradient($dark_bg_color);
color: $dark_fg_color;

&:focus, &:hover {
background-color: $selected_bg_color;
color: $selected_fg_color;
}

&:checked {
background-color: shade($selected_bg_color, .9);
color: $selected_fg_color;
}
}

treeview {
background-color: shade($dark_bg_color, 1.2);
color: $dark_fg_color;

&:selected, &:hover {
background-color: $selected_bg_color;
color: $selected_fg_color;
}
}
}
}

0 comments on commit 5869b68

Please sign in to comment.