diff options
author | Wolfgang Ulbrich <[email protected]> | 2015-12-30 23:26:54 +0100 |
---|---|---|
committer | Wolfgang Ulbrich <[email protected]> | 2015-12-30 23:27:37 +0100 |
commit | ace25fcba9b4c2a0efae00d69c951a16613e2754 (patch) | |
tree | 4a58df478c74443364ff080e757dbdaff9d71d36 | |
parent | e0481d264e8db870afb31d8c5f205aeef4bd1652 (diff) | |
download | mate-themes-ace25fcba9b4c2a0efae00d69c951a16613e2754.tar.bz2 mate-themes-ace25fcba9b4c2a0efae00d69c951a16613e2754.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;
}
|