From 8141513fa9551973a8514cee895880064b0cee6d Mon Sep 17 00:00:00 2001 From: Lim Chee Aun Date: Mon, 14 Aug 2023 20:32:09 +0800 Subject: [PATCH] Spruce up buttons in media modal --- src/app.css | 26 +++++++++++++++++++++++++- src/components/media-modal.jsx | 18 ++++++++---------- src/components/status.css | 4 ++-- 3 files changed, 35 insertions(+), 13 deletions(-) diff --git a/src/app.css b/src/app.css index 7e744233..4e9cdc80 100644 --- a/src/app.css +++ b/src/app.css @@ -1097,6 +1097,25 @@ a[href^='http'][rel*='nofollow']:visited:not(:has(div)) { button.carousel-dot { pointer-events: auto; font-weight: bold; + color: var(--text-color); + background-color: var(--bg-faded-blur-color); + border: var(--hairline-width) solid var(--outline-color); + box-shadow: 0 4px 32px var(--drop-shadow-color); + transition: all 0.2s ease-out; +} +button.carousel-dot { + background-color: transparent; +} +.carousel-controls :is(.button, button).carousel-button { + background-color: var(--bg-blur-color); +} +.carousel-controls + :is(.button, button).carousel-button:is(:hover, :focus):not(:active) { + background-color: var(--bg-color); + transform: scale(1.2); +} +.carousel-controls :is(.button, button).carousel-button:active { + transition-duration: 0s; } .carousel-top-controls .szh-menu-container { pointer-events: auto; @@ -1108,10 +1127,15 @@ button.carousel-dot { } .carousel-dots { border-radius: 999px; - backdrop-filter: blur(12px) invert(0.25); + background-color: var(--bg-faded-blur-color); + border: 1px solid var(--outline-color); + box-shadow: 0 4px 32px var(--drop-shadow-color); + /* backdrop-filter: blur(12px) invert(0.25); */ } button.carousel-dot { backdrop-filter: none !important; + border: none; + box-shadow: none; } button.carousel-dot[disabled] { pointer-events: none; diff --git a/src/components/media-modal.jsx b/src/components/media-modal.jsx index 8188b133..77980f80 100644 --- a/src/components/media-modal.jsx +++ b/src/components/media-modal.jsx @@ -135,7 +135,7 @@ function MediaModal({ {!!media.description && ( } @@ -206,7 +204,7 @@ function MediaModal({ mediaAttachments[currentIndex]?.remoteUrl || mediaAttachments[currentIndex]?.url } - class="carousel-button plain3" + class="carousel-button" target="_blank" title="Open original media in new window" > @@ -220,7 +218,7 @@ function MediaModal({ ? `?media=${currentIndex + 1}` : '' }`} - class="button carousel-button media-post-link plain3" + class="button carousel-button media-post-link" // onClick={() => { // // if small screen (not media query min-width 40em + 350px), run onClose // if ( @@ -238,7 +236,7 @@ function MediaModal({