diff options
author | Horst3180 | 2016-10-14 20:43:05 +0200 |
---|---|---|
committer | Horst3180 | 2016-10-14 20:43:05 +0200 |
commit | 2ca198985c2529e434f5ba5a129ce9a39828bbef (patch) | |
tree | 8dfaf560421814eabe8e535574eef299ec952966 /common | |
parent | 20edae5eed73564156896ab9b1c9756e4ea8c4a5 (diff) | |
download | solarc-theme-2ca198985c2529e434f5ba5a129ce9a39828bbef.tar.gz solarc-theme-2ca198985c2529e434f5ba5a129ce9a39828bbef.tar.xz solarc-theme-2ca198985c2529e434f5ba5a129ce9a39828bbef.zip |
gtk2: fix geany search combobox border (#674)
Diffstat (limited to 'common')
-rw-r--r-- | common/gtk-2.0/apps.rc | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/common/gtk-2.0/apps.rc b/common/gtk-2.0/apps.rc index 872e501..8dbf332 100644 --- a/common/gtk-2.0/apps.rc +++ b/common/gtk-2.0/apps.rc @@ -76,8 +76,7 @@ style "entry_border" { } } -style "combobox_entry_border" = "combobox_entry" -{ +style "combobox_entry_border" = "combobox_entry" { engine "pixmap" { @@ -87,7 +86,7 @@ style "combobox_entry_border" = "combobox_entry" state = NORMAL shadow = IN file = "assets/combo-entry-border.png" - border = { 4, 4, 5, 4 } + border = { 4, 4, 12, 12 } stretch = TRUE direction = LTR } @@ -97,7 +96,7 @@ style "combobox_entry_border" = "combobox_entry" detail = "entry" state = ACTIVE file = "assets/combo-entry-border-focus.png" - border = { 4, 4, 5, 4 } + border = { 4, 4, 12, 12 } stretch = TRUE direction = LTR } @@ -108,7 +107,7 @@ style "combobox_entry_border" = "combobox_entry" state = NORMAL shadow = IN file = "assets/combo-entry-border-rtl.png" - border = { 4, 4, 5, 4 } + border = { 4, 4, 12, 12 } stretch = TRUE direction = RTL } @@ -118,7 +117,7 @@ style "combobox_entry_border" = "combobox_entry" detail = "entry" state = ACTIVE file = "assets/combo-entry-border-focus-rtl.png" - border = { 4, 4, 5, 4 } + border = { 4, 4, 12, 12 } stretch = TRUE direction = RTL } |