The branch, master has been updated via 8149d709157172f9dc05723fe8a44a4fc8fd319b (commit) from a7d777a5e45a16b4fe4b885bf609aec270dce750 (commit)
- Log ----------------------------------------------------------------- commit 8149d709157172f9dc05723fe8a44a4fc8fd319b Author: Michal Čihař michal@cihar.com Date: Tue Feb 8 19:51:52 2011 +0100
Hovering using CSS only
-----------------------------------------------------------------------
Summary of changes: graphite/css/theme_right.css.php | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-)
diff --git a/graphite/css/theme_right.css.php b/graphite/css/theme_right.css.php index a116933..0897c55 100644 --- a/graphite/css/theme_right.css.php +++ b/graphite/css/theme_right.css.php @@ -192,15 +192,17 @@ button.mult_submit { }
/* odd items 1,3,5,7,... */ +tr.odd th, tr.odd { background: <?php echo $GLOBALS['cfg']['BgOne']; ?>; }
/* even items 2,4,6,8,... */ +tr.even th, tr.even { background: <?php echo $GLOBALS['cfg']['BgTwo']; ?>; } -fieldset th { +tr.even th, tr.odd th, fieldset th { color: <?php echo $GLOBALS['cfg']['MainColor']; ?>; }
@@ -212,6 +214,7 @@ tr.even {
<?php if ($GLOBALS['cfg']['BrowseMarkerEnable']) { ?> /* marked table rows */ +tr.marked th, tr.marked { background: <?php echo $GLOBALS['cfg']['BrowseMarkerBackground']; ?>; color: <?php echo $GLOBALS['cfg']['BrowseMarkerColor']; ?>; @@ -226,6 +229,7 @@ tr.marked { }
/* hovered table rows */ +tr:hover th, tr:hover { background: <?php echo $GLOBALS['cfg']['BrowsePointerBackground']; ?>; color: <?php echo $GLOBALS['cfg']['BrowsePointerColor']; ?>;
hooks/post-receive