1
2style "notify-window" {
3  XfceNotifyWindow::summary-bold = 1
4  XfceNotifyWindow::border-color = shade(1.3, @tooltip_bg_color)
5  XfceNotifyWindow::border-color-hover = shade(1.3, @tooltip_bg_color)
6  XfceNotifyWindow::border-radius = 3.0
7  XfceNotifyWindow::border-width = 1.0
8  XfceNotifyWindow::border-width-hover = 1.0
9
10  bg[NORMAL] = @tooltip_bg_color
11}
12
13style "notify-button" {
14  bg[NORMAL] = shade(1.1, @tooltip_bg_color)
15  bg[PRELIGHT] = shade(1.2, @tooltip_bg_color)
16  bg[ACTIVE] = shade(1.15, @tooltip_bg_color)
17
18  fg[NORMAL] = @tooltip_fg_color
19  fg[PRELIGHT] = shade(1.1, @tooltip_fg_color)
20  fg[ACTIVE] = @selected_fg_color
21
22  engine "murrine" {
23    gradient_shades = { 1.0, 1.0, 1.0, 1.0 }
24    border_shades = { 1.0, 1.0 }
25    roundness = 2
26    textstyle = 0
27  }
28}
29
30style "notify-text" {
31  GtkWidget::link-color = @selected_bg_color
32
33  fg[NORMAL] = shade(1.0, @tooltip_fg_color)
34  fg[PRELIGHT] = shade(1.1, @tooltip_fg_color)
35  fg[ACTIVE] = shade(1.0, @tooltip_fg_color)
36
37  engine "murrine" {
38    textstyle = 0
39  }
40}
41
42style "notify-summary" {
43    font_name = "Bold"
44}
45
46style "notify-progressbar" {
47  GtkProgressBar::min-horizontal-bar-height = 4
48
49  xthickness   = 0
50  ythickness   = 0
51
52  fg[PRELIGHT] = shade(0.8, @tooltip_bg_color)
53  bg[NORMAL]   = @selected_bg_color
54  bg[ACTIVE] = shade(0.8, @tooltip_bg_color)
55  bg[SELECTED] = @selected_bg_color
56
57  engine "murrine" {
58    gradient_shades = { 1.0, 1.0, 1.0, 1.0 }
59    border_shades = { 1.0, 1.0 }
60    trough_shades = { 1.0, 1.0 }
61    trough_border_shades = { 1.0, 1.0 }
62    progressbarstyle = 0
63    roundness = 2
64    textstyle = 0
65  }
66}
67
68class "XfceNotifyWindow" style "notify-window"
69widget "XfceNotifyWindow.*.summary" style "notify-summary"
70widget_class "XfceNotifyWindow.*<GtkButton>" style "notify-button"
71widget_class "XfceNotifyWindow.*.<GtkLabel>" style "notify-text"
72widget_class "XfceNotifyWindow.*.<GtkProgress>" style "notify-progressbar"
73widget_class "XfceNotifyWindow.*.<GtkProgressBar>" style "notify-progressbar"
74