menu-raised.rc (2454B)
1 ########################################## 2 # MENUBAR 3 ########################################## 4 style "menubar" = "default" 5 { 6 xthickness=3 7 ythickness=2 8 9 GtkMenuBar::internal-padding = 1 10 GtkMenuBar::window-dragging = 1 11 GtkMenuBar::shadow-type = GTK_SHADOW_NONE 12 13 fg[NORMAL] = @text_color 14 fg[PRELIGHT] = @text_color 15 fg[ACTIVE] = @text_color 16 fg[SELECTED] = @text_color 17 fg[INSENSITIVE] = @text_color 18 19 text[NORMAL] = @text_color 20 text[PRELIGHT] = @text_color 21 text[ACTIVE] = @text_color 22 text[SELECTED] = @text_color 23 text[INSENSITIVE] = @text_color 24 25 bg[NORMAL] = @base_color 26 bg[PRELIGHT] = @tooltip_bg_color 27 bg[ACTIVE] = darker (@base_color) 28 bg[SELECTED] = @tooltip_bg_color 29 bg[INSENSITIVE] = @tooltip_bg_color 30 31 base[NORMAL] = @base_color 32 base[PRELIGHT] = @tooltip_bg_color 33 base[ACTIVE] = @tooltip_bg_color 34 base[SELECTED] = @tooltip_bg_color 35 base[INSENSITIVE] = @base_color 36 37 engine "murrine" { 38 roundness = 3 39 contrast = 0.5 40 41 glow_shade = 1.0 42 glowstyle = 0 43 lightborder_shade = 1.2 44 lightborderstyle = 0 45 gradient_shades = {1.12, 0.98, 0.98, 0.95} 46 border_shades = {0.88, 1.2} 47 }} 48 49 ########################################## 50 # MENUS 51 ########################################## 52 style "menuitem" = "menubar" 53 { 54 xthickness=3 55 ythickness=3 56 57 GtkMenuItem::selected-shadow-type = GTK_SHADOW_ETCHED_IN 58 GtkMenuItem::horizontal-padding = 5 59 GtkMenuItem::toggle-spacing = 6 60 61 62 bg[SELECTED] = @selected_bg_color 63 fg[PRELIGHT] = @selected_fg_color 64 65 66 engine "murrine" { 67 roundness = 3 68 contrast = 0.7 69 70 glow_shade = 1.0 71 glowstyle = 0 72 lightborder_shade = 1.2 73 lightborderstyle = 0 74 gradient_shades = {1.12, 0.98, 0.98, 0.95} 75 border_shades = {0.88, 1.2} 76 }} 77 78 style "menu" = "menubar" 79 { 80 xthickness=3 81 ythickness=3 82 83 GtkMenu::horizontal-offset = -1 84 GtkMenu::horizontal-padding = 0 85 GtkMenu::vertical-padding = 0 86 87 fg[PRELIGHT] = @tooltip_fg_color 88 fg[SELECTED] = @tooltip_fg_color 89 90 bg[NORMAL] = shade (0.95, @base_color) 91 92 fg[ACTIVE] = "#808080" 93 fg[INSENSITIVE] = "#808080" 94 95 text[ACTIVE] = "#808080" 96 text[INSENSITIVE] = "#808080" 97 98 text[PRELIGHT] = @tooltip_fg_color 99 text[SELECTED] = @tooltip_fg_color 100 101 engine "murrine" { 102 contrast = 0.8 103 }} 104 105 ########################################## 106 # MATCHES 107 ########################################## 108 widget_class "*<GtkMenuItem>*" style "menuitem" 109 widget_class "*<GtkMenu>*" style "menu" 110 widget_class "*<GtkMenuBar>*" style "menubar"