From: Anton Khorev Date: Mon, 15 Apr 2024 01:07:50 +0000 (+0300) Subject: Override .table-success in dark mode X-Git-Tag: live~153^2~1 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/8d128cc3ba99cfa62f5ffd8eafd7b2d92bfff48b Override .table-success in dark mode --- diff --git a/app/assets/stylesheets/common.scss b/app/assets/stylesheets/common.scss index b949e8ac1..1fe7ea53b 100644 --- a/app/assets/stylesheets/common.scss +++ b/app/assets/stylesheets/common.scss @@ -75,7 +75,10 @@ time[title] { .table-secondary { --bs-table-bg: rgb(var(--bs-secondary-rgb), .25); } - .table-primary, .table-secondary { + .table-success { + --bs-table-bg: rgb(var(--bs-success-rgb), .25); + } + .table-primary, .table-secondary, .table-success { --bs-table-color: initial; border-color: inherit; }