diff options
author | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2023-04-20 08:37:49 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-20 08:37:49 +0200 |
commit | c85c04e4a8495eb04419a27a8e162c03acad6282 (patch) | |
tree | 1c530ed90f0c923f23fd6064322a008069157674 /apps | |
parent | 8799098d1f99bf9d132296150635a293736b34fb (diff) | |
parent | c17bfb2923fcfec0337ee6eef43cd17524d57d0b (diff) | |
download | nextcloud-server-c85c04e4a8495eb04419a27a8e162c03acad6282.tar.gz nextcloud-server-c85c04e4a8495eb04419a27a8e162c03acad6282.zip |
Merge pull request #37807 from nextcloud/fix/37373
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files_external/css/external.css | 3 |
1 files changed, 2 insertions, 1 deletions
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); } |