From bae8a51616f0997d2f6f1e708ad040570df7d981 Mon Sep 17 00:00:00 2001 From: pero1203 Date: Mon, 12 Sep 2022 10:50:06 +0200 Subject: [PATCH] GDRP seznam anket - popravek barve --- public/css/admin_new.css | 4 ++++ resources/sass/admin_new/pages/gdpr_pages/gdpr_tables.scss | 6 ++++++ 2 files changed, 10 insertions(+) diff --git a/public/css/admin_new.css b/public/css/admin_new.css index 69e5d89c3..ccb4cac9a 100644 --- a/public/css/admin_new.css +++ b/public/css/admin_new.css @@ -11205,6 +11205,10 @@ table.gdpr_surveys td { table.gdpr_surveys th:first-child { width: 30px; } +table.gdpr_surveys tr td, +table.gdpr_surveys tr.gray_row td { + background-color: #FFFFFF; +} table.gdpr_surveys tr.red_row td { background-color: #FFEFEF; } diff --git a/resources/sass/admin_new/pages/gdpr_pages/gdpr_tables.scss b/resources/sass/admin_new/pages/gdpr_pages/gdpr_tables.scss index c91cf8ec7..18a78270d 100644 --- a/resources/sass/admin_new/pages/gdpr_pages/gdpr_tables.scss +++ b/resources/sass/admin_new/pages/gdpr_pages/gdpr_tables.scss @@ -28,6 +28,12 @@ table.gdpr_surveys { width: 30px; } + tr, + tr.gray_row { + td { + background-color: $white; + } + } tr.red_row { td { background-color: $light-red;