diff options
author | raveit65 <[email protected]> | 2017-08-22 22:39:22 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2017-08-22 22:40:54 +0200 |
commit | bc2a1e590f87a2adf35f323cd7c99e95745dd8e5 (patch) | |
tree | 2f9948c94b8070e247d5853e13db51e5d514e0c5 | |
parent | 3e3e07a3a012b5e3e63429f3ea2dc5c1035647e4 (diff) | |
download | mate-themes-bc2a1e590f87a2adf35f323cd7c99e95745dd8e5.tar.bz2 mate-themes-bc2a1e590f87a2adf35f323cd7c99e95745dd8e5.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
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 94b14568..b8b5d2a3 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 1c32edb9..f6fed634 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 0fc79a5c..64ca911b 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 d5457341..41df66bd 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 6a75a184..95d2178d 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 d0f94728..65da4a0b 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 * *******************/ |