From 96f15a9038ce681fa3c8ac0df981b4a7069a0070 Mon Sep 17 00:00:00 2001 From: Adri Valle Date: Tue, 27 Aug 2019 12:01:18 +0200 Subject: [PATCH] Fix table-stripped --- public/less/dark_theme/wz_theme_dark.css | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/public/less/dark_theme/wz_theme_dark.css b/public/less/dark_theme/wz_theme_dark.css index 3185c15a4..a4b7e5149 100644 --- a/public/less/dark_theme/wz_theme_dark.css +++ b/public/less/dark_theme/wz_theme_dark.css @@ -174,12 +174,14 @@ md-nav-bar.md-default-theme .md-nav-bar, md-nav-bar .md-nav-bar { background: #272931; } -.table { + +.table-striped > tbody > tr:nth-of-type(even) { + background-color: #1d252f !important; color: #dfe5ef !important; } .table-striped > tbody > tr:nth-of-type(odd) { - background-color: #1a1b21; + background-color: #1a1b21 !important; color: #dfe5ef !important; }