aboutsummaryrefslogtreecommitdiff
path: root/common/gtk-2.0/apps.rc
diff options
context:
space:
mode:
authorHorst31802016-10-13 18:45:34 +0200
committerHorst31802016-10-13 18:45:39 +0200
commita9ce9d56ae61f23592fa4a8c200085dde7b43e07 (patch)
tree7ee54905f02fd8df247bb6ef3ce0603c190e1cb9 /common/gtk-2.0/apps.rc
parentcbc50501645429be6b53ecea72e0d45fcd469ad2 (diff)
downloadsolarc-theme-a9ce9d56ae61f23592fa4a8c200085dde7b43e07.tar.gz
solarc-theme-a9ce9d56ae61f23592fa4a8c200085dde7b43e07.tar.xz
solarc-theme-a9ce9d56ae61f23592fa4a8c200085dde7b43e07.zip
gtk2: fix geany search entries (#674)
Diffstat (limited to 'common/gtk-2.0/apps.rc')
-rw-r--r--common/gtk-2.0/apps.rc75
1 files changed, 72 insertions, 3 deletions
diff --git a/common/gtk-2.0/apps.rc b/common/gtk-2.0/apps.rc
index 3755258..872e501 100644
--- a/common/gtk-2.0/apps.rc
+++ b/common/gtk-2.0/apps.rc
@@ -76,11 +76,80 @@ style "entry_border" {
}
}
+style "combobox_entry_border" = "combobox_entry"
+{
+
+ engine "pixmap" {
+
+ image {
+ function = SHADOW
+ detail = "entry"
+ state = NORMAL
+ shadow = IN
+ file = "assets/combo-entry-border.png"
+ border = { 4, 4, 5, 4 }
+ stretch = TRUE
+ direction = LTR
+ }
+
+ image {
+ function = SHADOW
+ detail = "entry"
+ state = ACTIVE
+ file = "assets/combo-entry-border-focus.png"
+ border = { 4, 4, 5, 4 }
+ stretch = TRUE
+ direction = LTR
+ }
+
+ image {
+ function = SHADOW
+ detail = "entry"
+ state = NORMAL
+ shadow = IN
+ file = "assets/combo-entry-border-rtl.png"
+ border = { 4, 4, 5, 4 }
+ stretch = TRUE
+ direction = RTL
+ }
+
+ image {
+ function = SHADOW
+ detail = "entry"
+ state = ACTIVE
+ file = "assets/combo-entry-border-focus-rtl.png"
+ border = { 4, 4, 5, 4 }
+ stretch = TRUE
+ direction = RTL
+ }
+
+ image {
+ function = FLAT_BOX
+ state = INSENSITIVE
+ detail = "entry_bg"
+ file = "assets/null.png"
+ }
+
+ image {
+ function = FLAT_BOX
+ detail = "entry_bg"
+ file = "assets/null.png"
+ }
+ }
+}
+
+
# Mousepad search entry
-widget_class "*MousepadSearchBar*.<GtkEntry>" style "entry_border"
+widget_class "*MousepadSearchBar*.<GtkEntry>" style "entry_border"
# Mousepad find and replace
-widget_class "*MousepadReplaceDialog*.<GtkEntry>" style "entry_border"
+widget_class "*MousepadReplaceDialog*.<GtkEntry>" style "entry_border"
# Hexchat input box
-class "SexySpellEntry" style:highest "entry_border"
+class "SexySpellEntry" style:highest "entry_border"
+
+# Geany search entries
+widget "*GeanyToolbar.*geany-search-entry-no-match*" style "entry_border"
+widget "*GeanyToolbar.*GtkEntry*" style "entry_border"
+
+widget "GeanyDialogSearch.*GtkComboBoxEntry*.*geany-search-entry-no-match*" style "combobox_entry_border"