1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
diff -urp Numix-2.5.1/gtk-2.0/gtkrc Numix/gtk-2.0/gtkrc
--- Numix-2.5.1/gtk-2.0/gtkrc 2015-01-20 11:12:18.000000000 +0000
+++ Numix/gtk-2.0/gtkrc 2015-06-08 22:07:01.651081310 +0000
@@ -494,6 +494,7 @@ widget "*gimmie*" style "bold-panel-item
# XFCE Styles
style "workspace-switcher" = "murrine-panel" {
+ bg[ACTIVE] = @selected_bg_color
bg[SELECTED] = @selected_bg_color
}
@@ -575,7 +576,7 @@ style "xfsm-logout-button" {
}
}
-widget "*WnckPager*" style "workspace-switcher"
+widget "*Pager*" style "workspace-switcher"
widget "*Xfce*Panel*" style "murrine-panel"
class "*Xfce*Panel*" style "murrine-panel"
diff -urp Numix-2.5.1/gtk-3.0/apps/lightdm-gtk-greeter.css Numix/gtk-3.0/apps/lightdm-gtk-greeter.css
--- Numix-2.5.1/gtk-3.0/apps/lightdm-gtk-greeter.css 2015-01-20 11:12:18.000000000 +0000
+++ Numix/gtk-3.0/apps/lightdm-gtk-greeter.css 2015-06-08 22:07:01.655081309 +0000
@@ -1,3 +1,10 @@
+/***********
+ * general *
+ ***********/
+#screen.lightdm-gtk-greeter {
+ background: transparent;
+}
+
/*********
* panel *
*********/
@@ -28,7 +35,9 @@
}
#panel_window .menubar > .menuitem *:hover {
- color: white;
+ background-color: @theme_selected_bg_color;
+ background-image: none;
+ color: @theme_selected_fg_color;
}
#panel_window .menubar > .menuitem:insensitive {
@@ -180,6 +189,7 @@
/******************************
* default and focused button *
******************************/
+#login_window #login_button,
#login_window .button.default,
#shutdown_dialog .button.default,
#restart_dialog .button.default,
@@ -246,5 +256,7 @@
* password warning *
********************/
#greeter_infobar {
+ background-color: @warning_bg_color;
+ color: @warning_fg_color;
font: bold;
}
|