From c3577aa434ac5330d664f17d0771ff9679cced86 Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Mon, 20 Feb 2023 01:02:02 +0200 Subject: [PATCH] Swipebox slide background gradient of black to blue, so that back SVG images are visible. Thanks to xet7 ! --- client/components/cards/attachments.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/client/components/cards/attachments.css b/client/components/cards/attachments.css index eeb259175..4f96902f4 100644 --- a/client/components/cards/attachments.css +++ b/client/components/cards/attachments.css @@ -1,3 +1,8 @@ +.slide { + /* swipebox slide background gradient of black to blue, so that back SVG images are visible */ + background: rgb(2,0,36); + background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 14%, rgba(0,212,255,1) 100%); +} .attachment-upload { text-align: center; font-weight: bold;