gtk-css-engine r90 - in branches/bzr: . themes/Gilouche-CSS/gtk-2.0



Author: robsta
Date: Fri Sep  5 11:34:09 2008
New Revision: 90
URL: http://svn.gnome.org/viewvc/gtk-css-engine?rev=90&view=rev

Log:
sliders, entrys and scrollbars working pretty okayish now

Modified:
   branches/bzr/   (props changed)
   branches/bzr/ChangeLog
   branches/bzr/HACKING
   branches/bzr/NEWS
   branches/bzr/README
   branches/bzr/themes/Gilouche-CSS/gtk-2.0/styles.css

Modified: branches/bzr/HACKING
==============================================================================
--- branches/bzr/HACKING	(original)
+++ branches/bzr/HACKING	Fri Sep  5 11:34:09 2008
@@ -2,6 +2,7 @@
 HACKING
 =======
 
+
 General remarks
 ---------------
 
@@ -21,6 +22,7 @@
     foo_t *f;
     memset (f, 0, sizeof (*f));
 
+
 Including files
 ---------------
 
@@ -43,3 +45,12 @@
   #include "foo.h"
 
 
+Making a release
+----------------
+
+* NEWS.
+* `make distcheck'.
+* Commit to trunk (bzr).
+* Push to svn.
+* Tag in svn.
+* Announce.

Modified: branches/bzr/NEWS
==============================================================================
--- branches/bzr/NEWS	(original)
+++ branches/bzr/NEWS	Fri Sep  5 11:34:09 2008
@@ -0,0 +1,5 @@
+
+Gtk CSS Engine 0.1
+
+	* Initial release.
+

Modified: branches/bzr/README
==============================================================================
--- branches/bzr/README	(original)
+++ branches/bzr/README	Fri Sep  5 11:34:09 2008
@@ -8,6 +8,10 @@
   http://bzr-playground.gnome.org/~robsta/gtk-css-engine/
   bzr+ssh://bzr-playground.gnome.org/bzr/robsta/gtk-css-engine
 
+Svn at:
+svn+ssh://robsta svn gnome org/svn/gtk-css-engine/branches/gtk-css-engine-bzr
+This is updated infrequently from bzr.
+
 Andreas' `Gilouche-CSS' branch is at:
   http://bzr-playground.gnome.org/~andreasn/gtk-css-engine/
   bzr+ssh://bzr-playground.gnome.org/bzr/andreasn/gtk-css-engine

Modified: branches/bzr/themes/Gilouche-CSS/gtk-2.0/styles.css
==============================================================================
--- branches/bzr/themes/Gilouche-CSS/gtk-2.0/styles.css	(original)
+++ branches/bzr/themes/Gilouche-CSS/gtk-2.0/styles.css	Fri Sep  5 11:34:09 2008
@@ -75,13 +75,13 @@
 
 /* progressbar */
 
-box.bar {
+GtkProgressBar box.bar {
 	background: #587ba1 url(progressbar.png);
 	border: 1px solid #000;
 }
 
 /* progressbar container*/
-box.trough {
+GtkProgressBar box.trough {
 	background-color: #eee4cb;
 	border: 1px solid #a89a77;
 }
@@ -98,10 +98,16 @@
 	border: 1px solid #587ba1;
 }
 
-GtkHScale box {
-background-color: red;
+/*the background of the slider*/
+GtkHScale box.trough {
+background-image: url(scale-background.png);
 }
 
+GtkVScale box.trough {
+background-image: url(scale-background-vertical.png);
+}
+
+
 /* notebox widgets */
 box.notebook {
 	border: 1px solid #c6b182;
@@ -155,7 +161,7 @@
 }
 
 /* the buttons on the scrolled window sliders */
-box.hscrollbar {
+box.hscrollbar, box.vscrollbar {
 background-image: url(button-back.png);
 border: 1px solid #a19373;
 }
@@ -167,4 +173,8 @@
 
 resizegrip.statusbar {
 	background-image: url(resizegrip.png);
+}
+
+GtkEntry {
+background-color: #fff;
 }
\ No newline at end of file



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]