summaryrefslogtreecommitdiff
path: root/web/source/css/_media-wrapper.css
diff options
context:
space:
mode:
Diffstat (limited to 'web/source/css/_media-wrapper.css')
-rw-r--r--web/source/css/_media-wrapper.css33
1 files changed, 33 insertions, 0 deletions
diff --git a/web/source/css/_media-wrapper.css b/web/source/css/_media-wrapper.css
index a567cb0fd..55ad6eba0 100644
--- a/web/source/css/_media-wrapper.css
+++ b/web/source/css/_media-wrapper.css
@@ -74,6 +74,14 @@
div.blurhash-container > canvas {
display: none;
}
+
+ /*
+ Hide focus outline on click
+ to avoid ugly artifacts.
+ */
+ &:focus {
+ outline: none;
+ }
}
summary {
@@ -109,6 +117,16 @@
.hide {
display: none;
}
+
+ &:focus-visible {
+ /*
+ Can't rely on media having background with
+ decent contrast so inset and use button-fg
+ instead so focus is definitely visible.
+ */
+ outline: 0.25rem dashed $button-fg;
+ outline-offset: -0.25rem;
+ }
}
.show.sensitive {
@@ -126,6 +144,21 @@
}
}
+ a.photoswipe-slide {
+ display: inline-block;
+ height: 100%;
+ width: 100%;
+
+ /*
+ Inset outline to avoid outline
+ being hidden by overflow: hidden.
+ */
+ &:focus-visible {
+ outline: $button-focus-outline;
+ outline-offset: -0.25rem;
+ }
+ }
+
video.plyr-video, .plyr {
position: absolute;
height: 100%;