From 675f6c4ebb7a1efdd491e0241ae2aa1c89de204d Mon Sep 17 00:00:00 2001 From: Jonathan Weth <git@jonathanweth.de> Date: Wed, 29 Jan 2020 20:44:22 +0100 Subject: [PATCH] Extend CSS classes for striped table rows --- aleksis/core/static/style.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aleksis/core/static/style.scss b/aleksis/core/static/style.scss index ab23bc223..c9421f5a3 100644 --- a/aleksis/core/static/style.scss +++ b/aleksis/core/static/style.scss @@ -252,7 +252,7 @@ span.badge .material-icons { /* Table*/ -table.striped > tbody > tr:nth-child(odd) { +table.striped > tbody > tr:nth-child(odd), table tr.striped, table tbody.striped tr { background-color: rgba(208, 208, 208, 0.5); } -- GitLab