Commit:    ca5a8d0d77766638f4933703a29f6d1bc6fdbbcc
Author:    Kalle Sommer Nielsen <ka...@php.net>         Sat, 30 Jul 2016 
17:08:19 +0200
Parents:   220350b689d1f539d4453c682f4c0b95d6342f3f
Branches:  master

Link:       
http://git.php.net/?p=web/bugs.git;a=commitdiff;h=ca5a8d0d77766638f4933703a29f6d1bc6fdbbcc

Log:
Add a hover effect to the bug statistics page so its easier to identify a row

Changed paths:
  M  www/css/style.css
  M  www/stats.php


Diff:
diff --git a/www/css/style.css b/www/css/style.css
index 014be8b..b4cba6e 100644
--- a/www/css/style.css
+++ b/www/css/style.css
@@ -361,6 +361,10 @@ a.bug_stats_choosen {
        color: #006600;
 }
 
+.stats-table tr:hover td {
+       background-color: #aabbcc;
+}
+
 /* ========= Other ========= */
 
 a:link {
diff --git a/www/stats.php b/www/stats.php
index 3c9d631..0a14c9f 100644
--- a/www/stats.php
+++ b/www/stats.php
@@ -97,7 +97,7 @@ if ($total > 0) {
        </table>
 </form>
 
-<table style="width: 100%; margin-top: 1em;">
+<table style="width: 100%; margin-top: 1em;" class="stats-table">
 
 <?php // Exit if there are no bugs for this version


--
PHP Webmaster List Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to