diff options
author | raveit65 <[email protected]> | 2017-08-22 22:39:22 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2017-08-22 22:41:09 +0200 |
commit | e3d4cb285d08c9039b8ff1c6d68d512510afac82 (patch) | |
tree | a209de81caaa97410e395120ef851bb41328c499 /desktop-themes | |
parent | 0b744263d8cdd8d6de9cc86ea605659dd5ea462f (diff) | |
download | mate-themes-e3d4cb285d08c9039b8ff1c6d68d512510afac82.tar.bz2 mate-themes-e3d4cb285d08c9039b8ff1c6d68d512510afac82.tar.xz |
Gtk+-3.20 Most Themes: fix padding of primary/secondary image in GtkEntry
fixes https://github.com/solus-project/brisk-menu/issues/68
Diffstat (limited to 'desktop-themes')
6 files changed, 49 insertions, 0 deletions
diff --git a/desktop-themes/BlackMATE/gtk-3.0/gtk-widgets.css b/desktop-themes/BlackMATE/gtk-3.0/gtk-widgets.css index 7f713b5f..b99883a5 100644 --- a/desktop-themes/BlackMATE/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/BlackMATE/gtk-3.0/gtk-widgets.css @@ -528,6 +528,14 @@ cursor-handle.bottom { -gtk-icon-source: -gtk-icontheme("selection-end-symbolic"); } +entry image.left { + padding-right: 6px; +} + +entry image.right { + padding-left: 6px; +} + /******************* * Symbolic images * *******************/ 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 d8ddfb43..a5b62526 100644 --- a/desktop-themes/Blue-Submarine/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/Blue-Submarine/gtk-3.0/gtk-widgets.css @@ -366,6 +366,14 @@ entry progressbar { border-radius: 3px;
}
+entry image.left {
+ padding-right: 6px;
+}
+
+entry image.right {
+ padding-left: 6px;
+}
+
/****************
* Progress bar *
****************/
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 3b5d013b..e5c3380d 100644 --- a/desktop-themes/Green-Submarine/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/Green-Submarine/gtk-3.0/gtk-widgets.css @@ -367,6 +367,14 @@ entry progressbar { border-radius: 3px;
}
+entry image.left {
+ padding-right: 6px;
+}
+
+entry image.right {
+ padding-left: 6px;
+}
+
/****************
* Progress bar *
****************/
diff --git a/desktop-themes/GreenLaguna/gtk-3.0/gtk-widgets.css b/desktop-themes/GreenLaguna/gtk-3.0/gtk-widgets.css index fc8a6fa0..d3ed31c6 100644 --- a/desktop-themes/GreenLaguna/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/GreenLaguna/gtk-3.0/gtk-widgets.css @@ -672,6 +672,14 @@ cursor-handle.bottom { -gtk-icon-source: -gtk-icontheme("selection-end-symbolic"); } +entry image.left { + padding-right: 6px; +} + +entry image.right { + padding-left: 6px; +} + /******************* * Symbolic images * *******************/ diff --git a/desktop-themes/TraditionalGreen/gtk-3.0/gtk-widgets.css b/desktop-themes/TraditionalGreen/gtk-3.0/gtk-widgets.css index 1e970c44..188d766e 100644 --- a/desktop-themes/TraditionalGreen/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/TraditionalGreen/gtk-3.0/gtk-widgets.css @@ -484,6 +484,15 @@ entry:disabled { @entry_insensitive_bg_color 3px); } + +entry image.left { + padding-right: 6px; +} + +entry image.right { + padding-left: 6px; +} + /******************* * Symbolic images * *******************/ diff --git a/desktop-themes/TraditionalOk/gtk-3.0/gtk-widgets.css b/desktop-themes/TraditionalOk/gtk-3.0/gtk-widgets.css index 10981383..a587607b 100644 --- a/desktop-themes/TraditionalOk/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/TraditionalOk/gtk-3.0/gtk-widgets.css @@ -484,6 +484,14 @@ entry:disabled { @entry_insensitive_bg_color 3px); } +entry image.left { + padding-right: 6px; +} + +entry image.right { + padding-left: 6px; +} + /******************* * Symbolic images * *******************/ |