]> Pileus Git - ~andy/gtk/commitdiff
win32: Support frameless entries in theme
authorAlexander Larsson <alexl@redhat.com>
Thu, 15 Mar 2012 17:23:55 +0000 (18:23 +0100)
committerAlexander Larsson <alexl@redhat.com>
Thu, 15 Mar 2012 20:12:35 +0000 (21:12 +0100)
gtk/gtk-win32-base.css

index cf73cabd3e0b98f378a79a0bb859302593259c45..9cdab970ca4d1c038e190197aa91e0693b1f759e 100644 (file)
@@ -330,19 +330,23 @@ GtkAssistant .sidebar .highlight {
 
 /* Entry */
 
-/* TODO: For entries with set_has_frame FALSE we should use 'edit, 3 1', not 
-   sure how to select for this though */
+/* We apply the border as a border combined with the background so that
+   gtk_entry_set_has_frame works */
+
 .entry {
-    background-color: black;
-    border-width: 0;
-    background-image: -gtk-win32-theme-part(edit, 1 1);
-    padding: 3px;
+    border-width: 1px;
+    border-style: solid;
+    border-image: -gtk-win32-theme-part(edit, 1 1)  1 1 1 1 stretch;
+    background-image: -gtk-win32-theme-part(edit, 1 1, margins(-1 -1 -1 -1));
+    padding: 2px;
 }
 .entry:insensitive {
-    background-image: -gtk-win32-theme-part(edit, 1 4);
+    border-image: -gtk-win32-theme-part(edit, 1 4)  1 1 1 1 stretch;
+    background-image: -gtk-win32-theme-part(edit, 1 4, margins(-1 -1 -1 -1));
 }
 .entry:prelight {
-    background-image: -gtk-win32-theme-part(edit, 1 4);
+    border-image: -gtk-win32-theme-part(edit, 1 2)  1 1 1 1 stretch;
+    background-image: -gtk-win32-theme-part(edit, 1 2, margins(-1 -1 -1 -1));
 }
 
 /* Spinbuttons */