diff options
author | raveit65 <[email protected]> | 2015-09-15 16:12:52 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2015-09-15 16:14:10 +0200 |
commit | d2dba4d05c96d7cefeba0582c49d5d9eb1baf211 (patch) | |
tree | 8abd30e5fe84a956ea9e95ca0b50f79a0d15b562 /desktop-themes | |
parent | 3f928be46ad9a3ba9d8907ae09e488aaf4b65988 (diff) | |
download | mate-themes-d2dba4d05c96d7cefeba0582c49d5d9eb1baf211.tar.bz2 mate-themes-d2dba4d05c96d7cefeba0582c49d5d9eb1baf211.tar.xz |
GTK3 GreenLaguna: fix padding for horzontal spinbuttons if window is focused
Diffstat (limited to 'desktop-themes')
-rw-r--r-- | desktop-themes/GreenLaguna/gtk-3.0/gtk-widgets.css | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/desktop-themes/GreenLaguna/gtk-3.0/gtk-widgets.css b/desktop-themes/GreenLaguna/gtk-3.0/gtk-widgets.css index c0e56edf..e0b1a4a1 100644 --- a/desktop-themes/GreenLaguna/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/GreenLaguna/gtk-3.0/gtk-widgets.css @@ -1331,9 +1331,17 @@ GtkFileChooserButton .button { /***************** * GtkSpinButton * *****************/ + +.spinbutton, +.spinbutton.vertical { + padding: 5px 4px; +} + .spinbutton .button { color: @internal_element_color; padding: 2px 6px; + background-color: transparent; + background-image: none; border-width: 0; border-radius: 0; border-style: none; @@ -1341,11 +1349,6 @@ GtkFileChooserButton .button { box-shadow: inset 1px 0 @inset_dark_color; } -.spinbutton .button { - background-color: transparent; - background-image: none; -} - .spinbutton .button:insensitive { color: @internal_element_insensitive; } @@ -1375,7 +1378,6 @@ GtkFileChooserButton .button { .spinbutton .button:active:focus, .spinbutton .button:checked, .spinbutton .button:checked:focus { - padding: 2px 4px; box-shadow: inset 1px 0 @inset_dark_color, inset 0 1px alpha(@theme_selected_bg_color, 0.2), inset 0 -1px alpha(@theme_selected_bg_color, 0.2); @@ -1385,7 +1387,6 @@ GtkFileChooserButton .button { .spinbutton .button:first-child:active:focus, .spinbutton .button:first-child:active, .spinbutton .button:first-child:active:focus { - padding: 2px 4px; box-shadow: inset 1px 1px alpha(@theme_selected_bg_color, 0.2), inset 0 -1px alpha(@theme_selected_bg_color, 0.2); } @@ -1394,7 +1395,6 @@ GtkFileChooserButton .button { .spinbutton .button:last-child:active:focus, .spinbutton .button:last-child:checked, .spinbutton .button:last-child:checked:focus { - padding: 2px 4px; box-shadow: inset 1px 0 @inset_dark_color, inset 0 1px alpha(@theme_selected_bg_color, 0.2), inset -1px -1px alpha(@theme_selected_bg_color, 0.2); |