diff options
author | raveit65 <[email protected]> | 2015-09-14 17:50:07 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2015-09-14 17:50:07 +0200 |
commit | 4c7fc8e2bbc84703eec65db91ef1dfa28217c52f (patch) | |
tree | c8b67f0c2f4c60cdbb010e1da98b8995f127860e /desktop-themes/Blue-Submarine/gtk-3.0 | |
parent | 98c4e4d3404242b896eed84ee361d542205b96fc (diff) | |
download | mate-themes-4c7fc8e2bbc84703eec65db91ef1dfa28217c52f.tar.bz2 mate-themes-4c7fc8e2bbc84703eec65db91ef1dfa28217c52f.tar.xz |
GTK3: Submarine themes: use a consistent height for....
- GtkComboBox, GtkEntry, GtkFileChooserButton
- GtkToggleButton, GtkFontButton, GtkColorButton
Diffstat (limited to 'desktop-themes/Blue-Submarine/gtk-3.0')
-rw-r--r-- | desktop-themes/Blue-Submarine/gtk-3.0/gtk-widgets.css | 19 |
1 files changed, 17 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 8301cb6a..5d94a584 100644 --- a/desktop-themes/Blue-Submarine/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/Blue-Submarine/gtk-3.0/gtk-widgets.css @@ -277,11 +277,12 @@ GtkStatusbar .frame { * Text Entries *
****************/
-.entry {
+.entry,
+.combobox-entry .entry {
/* Look out !
This is the background color of mate-control-center 'too' */
background-color: shade (@bg_color, 1.1);
- padding: 3px 4px;
+ padding: 5px 4px;
-GtkEntry-inner-border: 0;
-GtkEntry-progress-border: 0;
color: @entry_text_color;
@@ -850,6 +851,20 @@ GtkScrolledWindow.frame { text-shadow: none;
}
+.button.text-button,
+GtkFileChooserButton .button {
+ padding: 5px 4px;
+}
+
+GtkComboBox GtkToggleButton.button {
+ padding: 4px;
+}
+
+GtkFontButton.button,
+GtkColorButton.button {
+ padding: 6px 4px;
+}
+
.path-bar .button,
.path-bar .button GtkImage,
.path-bar .button GtkLabel {
|