From: Ferdinand Thiessen Date: Tue, 18 Apr 2023 21:34:37 +0000 (+0200) Subject: fix(files_external): Background color of external devices with errors should respect... X-Git-Tag: v27.0.0beta1~112^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=refs%2Fpull%2F37807%2Fhead;p=nextcloud-server.git fix(files_external): Background color of external devices with errors should respect color theme Signed-off-by: Ferdinand Thiessen --- 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); }