diff options
author | Wolfgang Ulbrich <[email protected]> | 2015-12-30 23:26:54 +0100 |
---|---|---|
committer | Wolfgang Ulbrich <[email protected]> | 2015-12-30 23:28:08 +0100 |
commit | a4981ad760445c46c8ece0fa0228ffc91fa160c8 (patch) | |
tree | b0509f7fdf63f894573ab03f304767ed36894e0f | |
parent | 3bfbdd05f2d6f9099d427725177ee9a0dcfaefe2 (diff) | |
download | mate-themes-a4981ad760445c46c8ece0fa0228ffc91fa160c8.tar.bz2 mate-themes-a4981ad760445c46c8ece0fa0228ffc91fa160c8.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 5b8c6d1e..bdb81ab2 100644 --- a/desktop-themes/Blue-Submarine/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/Blue-Submarine/gtk-3.0/gtk-widgets.css @@ -887,7 +887,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 1e90a998..88d91cf9 100644 --- a/desktop-themes/Green-Submarine/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/Green-Submarine/gtk-3.0/gtk-widgets.css @@ -890,7 +890,8 @@ GtkFileChooserButton .button { padding: 5px 4px;
}
-GtkComboBox GtkToggleButton.button {
+GtkComboBox GtkToggleButton.button,
+GtkComboBox GtkToggleButton.button:hover {
padding: 4px;
}
|