From 3a7f9dddb66289bbd75b02b02c96966d1e0599d6 Mon Sep 17 00:00:00 2001 From: Marius Andra Date: Mon, 25 May 2020 17:59:28 +0200 Subject: [PATCH] fix colored dashboard item table background (#838) --- .../src/scenes/dashboard/DashboardItems.scss | 23 +++++++++++-------- 1 file changed, 14 insertions(+), 9 deletions(-) diff --git a/frontend/src/scenes/dashboard/DashboardItems.scss b/frontend/src/scenes/dashboard/DashboardItems.scss index 468b25f08da01..855270a5f0ffb 100644 --- a/frontend/src/scenes/dashboard/DashboardItems.scss +++ b/frontend/src/scenes/dashboard/DashboardItems.scss @@ -75,10 +75,6 @@ background: transparent; } - table.table { - margin: 0; - } - &.blue { --item-background: hsl(212, 63%, 40%); --item-darker: hsl(212, 63%, 35%); @@ -139,11 +135,20 @@ h1 { color: rgba(255, 255, 255, 0.9); } - table.table { - color: white; - tr td, - tr th { - border-top-color: rgba(255, 255, 255, 0.2); + .ant-table { + background: none; + table { + color: white; + tr td, + tr th { + color: white; + background: rgba(255, 255, 255, 0.1); + border-top-color: rgba(255, 255, 255, 0.2); + border-bottom-color: rgba(255, 255, 255, 0.2); + } + tr th { + background: rgba(255, 255, 255, 0.2); + } } } }