[archweb,1/1] Highlighting row on hover in the search results. FS#53612

Message ID 20180610173241.3958-1-nodivbyzero@gmail.com
State New
Headers show
Series [archweb,1/1] Highlighting row on hover in the search results. FS#53612 | expand

Commit Message

Emil Velikov via arch-projects June 10, 2018, 5:32 p.m. UTC
---
 sitestatic/archweb.css | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

Comments

Jelle van der Waa June 11, 2018, 5:19 p.m. UTC | #1
On 06/10/18 at 05:32pm, nodivbyzero via arch-projects wrote:
> ---
>  sitestatic/archweb.css | 10 +++++++++-
>  1 file changed, 9 insertions(+), 1 deletion(-)
> 
> diff --git a/sitestatic/archweb.css b/sitestatic/archweb.css
> index 209561f..ef178e8 100644
> --- a/sitestatic/archweb.css
> +++ b/sitestatic/archweb.css
> @@ -698,11 +698,19 @@ table.results {
>      }
>  
>      .results tr.odd {
> +        background: #f5f5f5;
> +    }
> +
> +    .results tr.odd:hover {
>          background: #fff;
>      }
>  
>      .results tr.even {
> -        background: #e4eeff;
> +        background: #ccdfff;
> +    }
> +
> +    .results tr.even:hover {
> +        background: #b3cfff;
>      }
>  
>      .results .flagged {
> -- 
> 2.17.0

Thanks,

But search row highlighting was already implemented and merged yesterday
in 577198a079489ba3e5522293deaa82adcddcded4.

Patch

diff --git a/sitestatic/archweb.css b/sitestatic/archweb.css
index 209561f..ef178e8 100644
--- a/sitestatic/archweb.css
+++ b/sitestatic/archweb.css
@@ -698,11 +698,19 @@  table.results {
     }
 
     .results tr.odd {
+        background: #f5f5f5;
+    }
+
+    .results tr.odd:hover {
         background: #fff;
     }
 
     .results tr.even {
-        background: #e4eeff;
+        background: #ccdfff;
+    }
+
+    .results tr.even:hover {
+        background: #b3cfff;
     }
 
     .results .flagged {