Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(45)

Side by Side Diff: src/platform/theme/resources/gtkrc

Issue 1517028: More theme changes: (Closed)
Patch Set: Created 10 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | src/platform/theme/theme_draw.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 gtk_color_scheme = "fg_color:#000\nbg_color:#F7F7F7\nbase_color:#F7F7F7\ntext_co lor:#000\nselected_bg_color:#000\nselected_fg_color:#000\ntooltip_bg_color:#F7F7 F7\ntooltip_fg_color:#000\n" 1 gtk_color_scheme = "fg_color:#000\nbg_color:#F7F7F7\nbase_color:#F7F7F7\ntext_co lor:#000\nselected_bg_color:#000\nselected_fg_color:#000\ntooltip_bg_color:#F7F7 F7\ntooltip_fg_color:#000\n"
2 2
3 gtk-font-name="DroidSans 7" 3 gtk-font-name="DroidSans 7"
4 4
5 # Disable button images.
6 gtk-button-images = 0
7
8 # Diable mnemonics for labels and menu items.
9 gtk-enable-mnemonics = 0
10
5 style "default" { 11 style "default" {
6 fg[NORMAL] = @fg_color 12 fg[NORMAL] = @fg_color
7 fg[PRELIGHT] = @text_color 13 fg[PRELIGHT] = @text_color
8 fg[SELECTED] = @selected_fg_color 14 fg[SELECTED] = @selected_fg_color
9 fg[ACTIVE] = @fg_color 15 fg[ACTIVE] = @fg_color
10 # Disabled text color for buttons. 16 # Disabled text color for buttons.
11 fg[INSENSITIVE] = "#808080" 17 fg[INSENSITIVE] = "#808080"
12 18
13 bg[NORMAL] = @bg_color 19 bg[NORMAL] = @bg_color
14 bg[PRELIGHT] = @bg_color 20 bg[PRELIGHT] = @bg_color
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 # border. 82 # border.
77 xthickness = 1 83 xthickness = 1
78 ythickness = 1 84 ythickness = 1
79 85
80 # This gives an extra border around each tab (notebook page) so that we can 86 # This gives an extra border around each tab (notebook page) so that we can
81 # draw the border in. We have to do this as we set the x/ythickness to 1. 87 # draw the border in. We have to do this as we set the x/ythickness to 1.
82 GtkNotebook::focus-line-width = 1 88 GtkNotebook::focus-line-width = 1
83 89
84 # We don't want tabs to overlap. 90 # We don't want tabs to overlap.
85 GtkNotebook::tab_overlap = 0 91 GtkNotebook::tab_overlap = 0
92
93 # Padding for tabs.
94 GtkNotebook::tab-curvature = 10
86 } 95 }
87 96
88 style "TextStyle" = "default" { 97 style "TextStyle" = "default" {
89 base[SELECTED] = "#DCE4FA" 98 base[SELECTED] = "#DCE4FA"
90 } 99 }
91 100
92 style "TooltipStyle" = "default" { 101 style "TooltipStyle" = "default" {
93 # Padding to allow a rounded rect border. 102 # Padding to allow a rounded rect border.
94 xthickness = 10 103 xthickness = 10
95 104
96 # Padding to give more space at top and bottom. 105 # Padding to give more space at top and bottom.
97 ythickness = 6 106 ythickness = 6
98 107
99 # Yellowish background. 108 # Yellowish background.
100 bg[NORMAL] = "#FFF9E3" 109 bg[NORMAL] = "#FFF9E3"
101 110
102 # Give tooltips a slightly smaller font. 111 # Give tooltips a slightly smaller font.
103 font_name = "DroidSans 6" 112 font_name = "DroidSans 6"
104 } 113 }
105 114
106 class "*" style "default" 115 class "*" style "default"
107 116
108 class "GtkNotebook" style "NotebookStyle" 117 class "GtkNotebook" style "NotebookStyle"
109 118
110 class "GtkEntry" style "TextStyle" 119 class "GtkEntry" style "TextStyle"
111 120
112 class "GtkTextView" style "TextStyle" 121 class "GtkTextView" style "TextStyle"
113 122
114 widget "gtk-tooltip*" style "TooltipStyle" 123 widget "gtk-tooltip*" style "TooltipStyle"
OLDNEW
« no previous file with comments | « no previous file | src/platform/theme/theme_draw.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698