Simplify hover CSS

This commit is contained in:
Michal Čihař
2011-02-08 19:47:24 +01:00
parent 2647b26071
commit 3496dded6a

View File

@@ -216,8 +216,6 @@ tr.even {
<?php if ($GLOBALS['cfg']['BrowseMarkerEnable']) { ?> <?php if ($GLOBALS['cfg']['BrowseMarkerEnable']) { ?>
/* marked table rows */ /* marked table rows */
td.marked,
tr.marked th,
tr.marked { tr.marked {
background: <?php echo $GLOBALS['cfg']['BrowseMarkerBackground']; ?>; background: <?php echo $GLOBALS['cfg']['BrowseMarkerBackground']; ?>;
color: <?php echo $GLOBALS['cfg']['BrowseMarkerColor']; ?>; color: <?php echo $GLOBALS['cfg']['BrowseMarkerColor']; ?>;
@@ -235,9 +233,7 @@ tr.marked {
} }
/* hovered table rows */ /* hovered table rows */
tr.odd:hover th, tr:hover {
tr.even:hover th,
tr.hover th {
background: <?php echo $GLOBALS['cfg']['BrowsePointerBackground']; ?>; background: <?php echo $GLOBALS['cfg']['BrowsePointerBackground']; ?>;
color: <?php echo $GLOBALS['cfg']['BrowsePointerColor']; ?>; color: <?php echo $GLOBALS['cfg']['BrowsePointerColor']; ?>;
} }