| OLD | NEW |
| 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="ChromeDroidSans 9" | 3 gtk-font-name="ChromeDroidSans 9" |
| 4 | 4 |
| 5 # Disable button images. | 5 # Disable menu and button icons. |
| 6 gtk-menu-images = 0 |
| 6 gtk-button-images = 0 | 7 gtk-button-images = 0 |
| 7 | 8 |
| 8 # Diable mnemonics for labels and menu items. | 9 # Diable mnemonics for labels and menu items. |
| 9 gtk-enable-mnemonics = 0 | 10 gtk-enable-mnemonics = 0 |
| 10 | 11 |
| 11 # Disable the "Input Methods" sub menu in context menus. | 12 # Disable the "Input Methods" sub menu in context menus. |
| 12 gtk-show-input-method-menu = 0 | 13 gtk-show-input-method-menu = 0 |
| 13 | 14 |
| 14 # Disable the "Insert Unicode Control Character" sub menu in context menus. | 15 # Disable the "Insert Unicode Control Character" sub menu in context menus. |
| 15 gtk-show-unicode-menu = 0 | 16 gtk-show-unicode-menu = 0 |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 142 widget "*.chromeos-options-tab" style "WhiteBackgroundStyle" | 143 widget "*.chromeos-options-tab" style "WhiteBackgroundStyle" |
| 143 | 144 |
| 144 widget "*.chromeos-options-tab*.GtkEventBox" style "WhiteBackgroundStyle" | 145 widget "*.chromeos-options-tab*.GtkEventBox" style "WhiteBackgroundStyle" |
| 145 | 146 |
| 146 # GTK+ hardcodes Ctrl-/ to select all text, just like Ctrl-A. Unbind it | 147 # GTK+ hardcodes Ctrl-/ to select all text, just like Ctrl-A. Unbind it |
| 147 # here so we can bind it ourselves to do something else in Chrome. | 148 # here so we can bind it ourselves to do something else in Chrome. |
| 148 binding "UnbindControlSlash" { | 149 binding "UnbindControlSlash" { |
| 149 unbind "<Control>slash" | 150 unbind "<Control>slash" |
| 150 } | 151 } |
| 151 class "*" binding "UnbindControlSlash" | 152 class "*" binding "UnbindControlSlash" |
| OLD | NEW |