Merge pull request #13998 from shucon/hover

Fixes Hover on tables
This commit is contained in:
Maurício Meneghini Fauth 2018-02-16 11:49:30 -02:00 committed by GitHub
commit 9fc96ed8f8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -586,7 +586,17 @@ table tr.marked:not(.nomarker) {
color: <?php echo $GLOBALS['cfg']['BrowseMarkerColor']; ?>;
}
/* hovered items */
table tbody:first-of-type tr:not(.nopointer):hover,
table tbody:first-of-type tr:not(.nopointer):hover th,
.hover:not(.nopointer) {
<?php echo $theme->getCssGradient('ced6df', 'b6c6d7'); ?>
color: <?php echo $GLOBALS['cfg']['BrowsePointerColor']; ?>;
}
/* hovered table rows */
#table_index tbody:hover tr,
#table_index tbody:hover th,
table tr.hover:not(.nopointer) th {
<?php echo $theme->getCssGradient('ced6df', 'b6c6d7'); ?>
color: <?php echo $GLOBALS['cfg']['BrowsePointerColor']; ?>;