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-01-30 18:29:46 +0300
committerMaurĂ­cio Meneghini Fauth <mauriciofauth@gmail.com>2018-01-30 18:29:46 +0300
commit4027f4fc49b3e4db65a89ae46e8fb7dae4b257e0 (patch)
treee2eb25033674c1aa8903ac2ba391daa37e12d53d /themes
parent439185c6127ebb77731c71966005dcaeb6aa4834 (diff)
Fixes Colour issue in rows on hover (#13960)
* Fixes Colour issue in rows on hover Fixes : https://github.com/phpmyadmin/phpmyadmin/issues/13880 Signed-off-by: Saksham Gupta <shucon01@gmail.com>
Diffstat (limited to 'themes')
-rw-r--r--themes/original/css/common.css.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/themes/original/css/common.css.php b/themes/original/css/common.css.php
index 2df7a062fe..290f997df8 100644
--- a/themes/original/css/common.css.php
+++ b/themes/original/css/common.css.php
@@ -305,6 +305,8 @@ table tr:not(.nopointer):hover,
}
/* hovered table rows */
+#table_index tbody:hover tr,
+#table_index tbody:hover th,
table tr.hover:not(.nopointer) th {
background: <?php echo $GLOBALS['cfg']['BrowsePointerBackground']; ?>;
color: <?php echo $GLOBALS['cfg']['BrowsePointerColor']; ?>;