Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/themes
diff options
context:
space:
mode:
authorMaurĂ­cio Meneghini Fauth <mauriciofauth@gmail.com>2018-02-16 16:49:30 +0300
committerGitHub <noreply@github.com>2018-02-16 16:49:30 +0300
commit9fc96ed8f8b737c830ff81671501049ca007b979 (patch)
treedb80036ea2f26ea656abedeba52098e45f65cd38 /themes
parent767f0731e9e76c5dfbd5c728b4da24f7f88b74db (diff)
parent8af6cf990377f64133e2335914f846a25c5c42fd (diff)
Merge pull request #13998 from shucon/hover
Fixes Hover on tables
Diffstat (limited to 'themes')
-rw-r--r--themes/pmahomme/css/common.css.php10
1 files changed, 10 insertions, 0 deletions
diff --git a/themes/pmahomme/css/common.css.php b/themes/pmahomme/css/common.css.php
index cae0e55779..a4c64874c3 100644
--- a/themes/pmahomme/css/common.css.php
+++ b/themes/pmahomme/css/common.css.php
@@ -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']; ?>;