menu-square.rc (2401B)
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.2 42 glowstyle = 1 43 lightborder_shade = 0.88 44 gradient_shades = {0.95, 1.0, 1.0, 1.1} 45 border_shades = {1.0, 1.1} 46 }} 47 48 ########################################## 49 # MENUS 50 ########################################## 51 style "menuitem" = "menubar" 52 { 53 xthickness=3 54 ythickness=3 55 56 GtkMenuItem::selected-shadow-type = GTK_SHADOW_ETCHED_IN 57 GtkMenuItem::horizontal-padding = 5 58 GtkMenuItem::toggle-spacing = 6 59 60 61 bg[SELECTED] = @selected_bg_color 62 fg[PRELIGHT] = @selected_fg_color 63 64 65 engine "murrine" { 66 roundness = 0 67 contrast = 0.7 68 69 glow_shade = 1.1 70 glowstyle = 1 71 lightborder_shade = 0.88 72 gradient_shades = {0.9, 1.0, 1.0, 1.1} 73 border_shades = {0.82, 1.73} 74 }} 75 76 style "menu" = "menubar" 77 { 78 xthickness=0 79 ythickness=3 80 81 GtkMenu::horizontal-offset = -1 82 GtkMenu::horizontal-padding = 0 83 GtkMenu::vertical-padding = 0 84 85 fg[PRELIGHT] = @tooltip_fg_color 86 fg[SELECTED] = @tooltip_fg_color 87 88 bg[NORMAL] = shade (0.95, @base_color) 89 90 fg[ACTIVE] = "#808080" 91 fg[INSENSITIVE] = "#808080" 92 93 text[ACTIVE] = "#808080" 94 text[INSENSITIVE] = "#808080" 95 96 text[PRELIGHT] = @tooltip_fg_color 97 text[SELECTED] = @tooltip_fg_color 98 99 engine "murrine" { 100 contrast = 0.8 101 }} 102 103 ########################################## 104 # MATCHES 105 ########################################## 106 widget_class "*<GtkMenuItem>*" style "menuitem" 107 widget_class "*<GtkMenu>*" style "menu" 108 widget_class "*<GtkMenuBar>*" style "menubar"