# HG changeset patch # User Christophe Lincoln # Date 1302861855 -7200 # Node ID 30036a49cacd6f5194c817c3ae7c2d30ec045f62 # Parent 34979c5e823b23735a0dff74dc54e24786227644 Lighter footer font color diff -r 34979c5e823b -r 30036a49cacd lib/libtazpanel --- a/lib/libtazpanel Fri Apr 15 12:01:19 2011 +0200 +++ b/lib/libtazpanel Fri Apr 15 12:04:15 2011 +0200 @@ -14,7 +14,7 @@ # We need a config file first get_config() { CONFIG="/etc/slitaz/tazpanel.conf" - [ -f tazpanel.conf ] && CONFIG="tazpanel.conf" + [ -f data/tazpanel.conf ] && CONFIG="data/tazpanel.conf" [ -f "$CONFIG" ] && . $CONFIG [ ! -f "$PANEL/lib/libtazpanel" ] && \ echo "No config file or libtazpanel found: $CONFIG" && \ diff -r 34979c5e823b -r 30036a49cacd styles/default/style.css --- a/styles/default/style.css Fri Apr 15 12:01:19 2011 +0200 +++ b/styles/default/style.css Fri Apr 15 12:04:15 2011 +0200 @@ -251,7 +251,8 @@ text-align: center; padding: 40px 10px; font-size: 11px; - color: #555; + color: #bbb; } -#footer a:hover { color: blue; } +#footer a { color: #bbb; } +#footer a:hover { color: #555; } diff -r 34979c5e823b -r 30036a49cacd tazpanel --- a/tazpanel Fri Apr 15 12:01:19 2011 +0200 +++ b/tazpanel Fri Apr 15 12:04:15 2011 +0200 @@ -9,7 +9,7 @@ # Get the configuration file and functions CONFIG="/etc/slitaz/tazpanel.conf" [ -f $CONFIG ] && . $CONFIG -[ -f tazpanel.conf ] && . tazpanel.conf +[ -f data/tazpanel.conf ] && . data/tazpanel.conf [ ! -f $PANEL/lib/libtazpanel ] && \ echo "No config file or libtazpanel found: $CONFIG" && exit 1 . $PANEL/lib/libtazpanel