Troubles in default theme (Simple)



Day after day I'm becoming a fan of Simple theme.

But there some troubles or, better, annoying stuff.

-------------------------------------------------------------------
Tooltip bg color

        Why not something like Traditional theme? Using the same default
        bg make a tooltip like a visual noise, IMHO.
        
        ( attached patch )
-------------------------------------------------------------------
Unselected list item

        Please take a look to ephy's bookmark dialog: select a topic,
        then select a bookmark. Same appearance (green bg, black fg) for
        both. This can be a trouble when you select File -> Delete and
        you don't remember what's the last selection.
        
        Now take a look to evolution (1.4.x): select a mail folder then
        a message: as you can see the first selection became different
        from the last one (BTW IMHO green bg + white fg is better then
        black fg).
        
        ( patch not ready :-( )
        
-----------------------------------------------------------------------------
Checkbox in lists

        This is the most annoying issue. I made a very hacky patch: use
        pixmap engine for GtkTreeView (and GtkCList for backward
        compatibility) with no option, so default GTK+ theme will be
        used.
        
        It works: apply it and take a look to sound-juicer and
        gnome-system-monitor preferences, but it adds libpixmap.so to
        shared memory :-|
        
        Anyone know how to use default engine? Is seems that
                
                style "list" = "default" {
                engine "default" {} }
                
        don't work.
        
        
        
        ( attached hacky patch )


-------------------------------------------------------------------------------------
(funnny) Use spacing, not spacer, in menu

        IMHO this is very HIG, and very funny ;-) Comments, ideas?
diff -Naur gnome-themes/gtk-themes/Simple/gtkrc gnome-themes-new/gtk-themes/Simple/gtkrc
--- gnome-themes/gtk-themes/Simple/gtkrc	2003-10-10 10:06:41.000000000 +0200
+++ gnome-themes-new/gtk-themes/Simple/gtkrc	2003-10-10 10:13:20.000000000 +0200
@@ -56,7 +56,16 @@
    engine "redmond95" { }
 }
 
+style "tooltips" = "default"
+{
+  xthickness = 4
+  ythickness = 4
+  bg[NORMAL] = "#eee1b3"
+}
+
+
 class "GtkWidget" style "default"
 class "GtkMenuItem*"	style "menu"
 class "GtkCheckButton" style "togglebuttons"
 class "GtkRadioButton" style "togglebuttons"
+widget "gtk-tooltips" style "tooltips"
diff -Naur gnome-themes/gtk-themes/Simple/gtkrc gnome-themes-new/gtk-themes/Simple/gtkrc
--- gnome-themes/gtk-themes/Simple/gtkrc	2003-10-10 10:06:41.000000000 +0200
+++ gnome-themes-new/gtk-themes/Simple/gtkrc	2003-10-10 11:04:37.000000000 +0200
@@ -51,12 +51,20 @@
 		text[PRELIGHT]					= { 1.0, 1.0, 1.0 }
 		engine "redmond95" { }
 }
+
 style "togglebuttons" = "default"
 {
    engine "redmond95" { }
 }
 
+style "list" = "default"
+{
+   engine "pixmap" { }
+}
+
 class "GtkWidget" style "default"
 class "GtkMenuItem*"	style "menu"
 class "GtkCheckButton" style "togglebuttons"
 class "GtkRadioButton" style "togglebuttons"
+class "GtkCList" style "list"
+clall "GtkTreeView" style "list"
\ No newline at end of file


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