From 9cb481a5bd1333c68b074c600678026a37d783cd Mon Sep 17 00:00:00 2001 From: Jay Linski Date: Sat, 14 Apr 2018 21:36:14 +0200 Subject: [PATCH] Highlight every second table row (#22) The CSS rule `&:nth-child(2)` only highlights the second table row. This change will highlight every second table row, which improves readability. --- lib/default-theme/styles/theme.styl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/default-theme/styles/theme.styl b/lib/default-theme/styles/theme.styl index 882a5e40fa..b6ed4effb9 100644 --- a/lib/default-theme/styles/theme.styl +++ b/lib/default-theme/styles/theme.styl @@ -132,7 +132,7 @@ table tr border-top 1px solid #dfe2e5 - &:nth-child(2) + &:nth-child(2n) background-color #f6f8fa th, td