From c4911d9e21006bafaee279cffc29e4e9f4bf01c4 Mon Sep 17 00:00:00 2001 From: Evgeny Aleksandrov Date: Sat, 20 Apr 2019 10:30:42 +0300 Subject: [PATCH] Switch odd and even cells bg colors in html template --- ProvisionQL/Resources/template.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ProvisionQL/Resources/template.html b/ProvisionQL/Resources/template.html index 7cfa608..26decff 100644 --- a/ProvisionQL/Resources/template.html +++ b/ProvisionQL/Resources/template.html @@ -127,11 +127,11 @@ } tr:nth-child(odd) { - background-color: #292929; + background-color: #1e1e1e; } tr:nth-child(even) { - background-color: #1e1e1e; + background-color: #292929; } }