diff options
author | Wolfgang Ulbrich <[email protected]> | 2015-12-30 23:26:54 +0100 |
---|---|---|
committer | Wolfgang Ulbrich <[email protected]> | 2015-12-30 23:26:54 +0100 |
commit | a768015477686a9d308e035284c6722faa671100 (patch) | |
tree | 675203bb3f2d2bd8165424e9db8b286ef2161c3c | |
parent | e96b4dd1fdd043be71641bd725ae9e82af93fa82 (diff) | |
download | mate-themes-a768015477686a9d308e035284c6722faa671100.tar.bz2 mate-themes-a768015477686a9d308e035284c6722faa671100.tar.xz |
GTK3: submarine themes: fix padding for GtkToggleButton.button:hover
-rw-r--r-- | desktop-themes/Blue-Submarine/gtk-3.0/gtk-widgets.css | 3 | ||||
-rw-r--r-- | desktop-themes/Green-Submarine/gtk-3.0/gtk-widgets.css | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/desktop-themes/Blue-Submarine/gtk-3.0/gtk-widgets.css b/desktop-themes/Blue-Submarine/gtk-3.0/gtk-widgets.css index 0f138a3e..6aea813e 100644 --- a/desktop-themes/Blue-Submarine/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/Blue-Submarine/gtk-3.0/gtk-widgets.css @@ -897,7 +897,8 @@ GtkFileChooserButton .button { padding: 5px 4px;
}
-GtkComboBox GtkToggleButton.button {
+GtkComboBox GtkToggleButton.button,
+GtkComboBox GtkToggleButton.button:hover {
padding: 4px;
}
diff --git a/desktop-themes/Green-Submarine/gtk-3.0/gtk-widgets.css b/desktop-themes/Green-Submarine/gtk-3.0/gtk-widgets.css index 38ab9363..69795c48 100644 --- a/desktop-themes/Green-Submarine/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/Green-Submarine/gtk-3.0/gtk-widgets.css @@ -900,7 +900,8 @@ GtkFileChooserButton .button { padding: 5px 4px;
}
-GtkComboBox GtkToggleButton.button {
+GtkComboBox GtkToggleButton.button,
+GtkComboBox GtkToggleButton.button:hover {
padding: 4px;
}
|