Skip to content

Commit 5869b68

Browse files
committed
Gtk-3.20:xfce Add whisker menu style. Fixes #666
1 parent 8083a96 commit 5869b68

1 file changed

Lines changed: 44 additions & 0 deletions

File tree

src/gtk-3.20/scss/apps/_xfce.scss

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,48 @@
4444
}
4545
}
4646
}
47+
48+
#whiskermenu-window {
49+
* {
50+
border-color: border_normal($dark_bg_color);
51+
outline: none;
52+
}
53+
54+
background-color: $dark_bg_color;
55+
color: $dark_fg_color;
56+
57+
entry {
58+
background-color: shade($dark_bg_color, 1.2);
59+
color: $dark_fg_color;
60+
}
61+
62+
button {
63+
font-weight: bold;
64+
padding: 6px 12px;
65+
margin: 3px 0px;
66+
border: none;
67+
@include linear_gradient($dark_bg_color);
68+
color: $dark_fg_color;
69+
70+
&:focus, &:hover {
71+
background-color: $selected_bg_color;
72+
color: $selected_fg_color;
73+
}
74+
75+
&:checked {
76+
background-color: shade($selected_bg_color, .9);
77+
color: $selected_fg_color;
78+
}
79+
}
80+
81+
treeview {
82+
background-color: shade($dark_bg_color, 1.2);
83+
color: $dark_fg_color;
84+
85+
&:selected, &:hover {
86+
background-color: $selected_bg_color;
87+
color: $selected_fg_color;
88+
}
89+
}
90+
}
4791
}

0 commit comments

Comments
 (0)