From c17bfb2923fcfec0337ee6eef43cd17524d57d0b Mon Sep 17 00:00:00 2001 From: Ferdinand Thiessen Date: Tue, 18 Apr 2023 23:34:37 +0200 Subject: [PATCH] fix(files_external): Background color of external devices with errors should respect color theme Signed-off-by: Ferdinand Thiessen --- apps/files_external/css/external.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/files_external/css/external.css b/apps/files_external/css/external.css index 489cd630fb9..ea26e879a0f 100644 --- a/apps/files_external/css/external.css +++ b/apps/files_external/css/external.css @@ -1,3 +1,4 @@ .files-filestable tbody tr.externalErroredRow { - background-color: #F2DEDE; + /* TODO: As soon as firefox supports it: color-mix(in srgb, var(--color-error) 15%, var(--color-main-background)) */ + background-color: rgba(255, 0, 0, 0.13); } -- 2.39.5