aboutsummaryrefslogtreecommitdiff
path: root/common/gtk-2.0/apps.rc
diff options
context:
space:
mode:
authorHorst31802016-05-30 22:35:54 +0200
committerHorst31802016-05-30 22:35:54 +0200
commit543d5a9a26acd8c3f2c7e89a63c5d58b5c8cfef0 (patch)
tree8da76a9eccc1fd06d7a164e0b32d4bf7084ccc2a /common/gtk-2.0/apps.rc
parente4f382c4274018b29419e64af65d660ad24b9d6d (diff)
downloadsolarc-theme-543d5a9a26acd8c3f2c7e89a63c5d58b5c8cfef0.tar.gz
solarc-theme-543d5a9a26acd8c3f2c7e89a63c5d58b5c8cfef0.tar.xz
solarc-theme-543d5a9a26acd8c3f2c7e89a63c5d58b5c8cfef0.zip
gtk2: fix entry styling (fix #547)
Diffstat (limited to 'common/gtk-2.0/apps.rc')
-rw-r--r--common/gtk-2.0/apps.rc49
1 files changed, 49 insertions, 0 deletions
diff --git a/common/gtk-2.0/apps.rc b/common/gtk-2.0/apps.rc
index 6a010b0..2fcbdd5 100644
--- a/common/gtk-2.0/apps.rc
+++ b/common/gtk-2.0/apps.rc
@@ -25,3 +25,52 @@ widget_class "*ThunarWindow*.<GtkScrolledWindow>" style "thunar-frame"
widget_class "*ThunarShortcutsView*" style "dark-sidebar"
widget_class "*ThunarTreeView*" style "dark-sidebar"
widget_class "*ThunarWindow*.<GtkHPaned>" style "thunar-handle"
+
+#
+# Mousepad
+#
+
+style "entry_border" {
+
+ engine "pixmap" {
+
+ image {
+ function = SHADOW
+ detail = "entry"
+ state = NORMAL
+ shadow = IN
+ file = "assets/entry-border-bg.png"
+ border = { 12, 12, 12, 12 }
+ stretch = TRUE
+ }
+
+ image {
+ function = SHADOW
+ detail = "entry"
+ state = ACTIVE
+ file = "assets/entry-border-active-bg.png"
+ border = { 12, 12, 12, 12 }
+ stretch = TRUE
+ }
+
+ image {
+ function = FLAT_BOX
+ detail = "entry_bg"
+ state = NORMAL
+ overlay_file = "assets/null.png"
+ overlay_border = { 0, 0, 0, 0 }
+ overlay_stretch = TRUE
+ }
+
+ image {
+ function = FLAT_BOX
+ detail = "entry_bg"
+ state = ACTIVE
+ overlay_file = "assets/null.png"
+ overlay_border = { 0, 0, 0, 0 }
+ overlay_stretch = TRUE
+ }
+ }
+}
+
+widget_class "*MousepadSearchBar*.<GtkEntry>" style "entry_border"