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:
authorSaksham Gupta <shucon01@gmail.com>2018-02-12 13:37:02 +0300
committerSaksham Gupta <shucon01@gmail.com>2018-02-12 13:37:02 +0300
commit8d30d07cbd1dfdfca5a91092406bff877de56f2f (patch)
treef66a3fba31cbe867b7057e8f9df4339de57c531b /themes
parent607ed036fe0a2f8d4b6cc163f3011cef54caacf6 (diff)
Fixes Hover on tables
Fixes: https://github.com/phpmyadmin/phpmyadmin/issues/13980 Signed-off-by: Saksham Gupta <shucon01@gmail.com>
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']; ?>;