summaryrefslogtreecommitdiff
path: root/web/source/css
diff options
context:
space:
mode:
authorLibravatar f0x52 <f0x@cthu.lu>2022-08-14 19:22:13 +0200
committerLibravatar GitHub <noreply@github.com>2022-08-14 19:22:13 +0200
commit52fe681ba21fd17622a35cb773d28e2376be1b0a (patch)
treeefbc57451a99ef91524bf62158ebafdc635ef3cc /web/source/css
parent[frontend] Style scrollbars site-wide (not just in code) (#753) (diff)
downloadgotosocial-52fe681ba21fd17622a35cb773d28e2376be1b0a.tar.xz
[frontend] Sensitive media spoilers (#752)
* sensitive media spoilers * small tweaks, use pointer-events (thanks @owl!) * allow hiding all media * add button roles * add tabindices * s/Show media/Show sensitive media/ * show hovering alt-text on hidden sensitive images Co-authored-by: tobi <31960611+tsmethurst@users.noreply.github.com>
Diffstat (limited to 'web/source/css')
-rw-r--r--web/source/css/_colors.css3
-rw-r--r--web/source/css/status.css103
2 files changed, 89 insertions, 17 deletions
diff --git a/web/source/css/_colors.css b/web/source/css/_colors.css
index 5390f13d2..1544e6ad0 100644
--- a/web/source/css/_colors.css
+++ b/web/source/css/_colors.css
@@ -68,6 +68,9 @@ $status_focus_bg: $bg_accent;
$status_unfocus_bg: $sloth_gray2_darker3;
$status_info_fg: #CBCBD7;
+$bg_no_img_desc: $sloth_orange2;
+$bg_sensitive: $sloth_gray2_darker15;
+
$boxshadow: 0 0.4rem 1rem -0.1rem rgba(0,0,0,0.15);
$boxshadow_border: 0.08rem solid $sloth_gray2_darker5;
diff --git a/web/source/css/status.css b/web/source/css/status.css
index dd7ed174c..945aa2c4c 100644
--- a/web/source/css/status.css
+++ b/web/source/css/status.css
@@ -173,7 +173,7 @@ main {
.media {
margin-top: 0.6rem;
- border-radius: 0.2rem;
+ border-radius: $br;
grid-column: span 3;
display: grid;
grid-template-columns: 50% 50%;
@@ -181,24 +181,101 @@ main {
overflow: hidden;
gap: 0.3rem;
- a {
+ .media-wrapper {
position: relative;
}
+ &.single .media-wrapper {
+ grid-column: span 2;
+ }
+
+ &.odd .media-wrapper:first-child, &.double .media-wrapper {
+ grid-row: span 2;
+ }
+
+ .open, .open .button {
+ display: none;
+ }
+
+ .closed {
+ z-index: 2;
+ }
+
+ input.sensitive-checkbox:checked { /* Media is shown */
+ & ~ .sensitive {
+ .closed {
+ transition: 0.8s;
+ pointer-events: none;
+ opacity: 0;
+
+ & > * {
+ display: none;
+ }
+ }
+
+ .open {
+ display: flex;
+ justify-content: flex-start;
+
+ .button {
+ align-self: flex-start;
+ display: initial;
+ z-index: 4;
+ }
+ }
+ }
+ }
+
+ .sensitive {
+ position: absolute;
+ height: 100%;
+ width: 100%;
+
+ .open, .closed {
+ display: flex;
+ position: absolute;
+ height: 100%;
+ width: 100%;
+ justify-content: center;
+ padding: 1rem;
+
+ label {
+ z-index: 3;
+ }
+ }
+
+ .closed {
+ transition: 0.3s;
+ background: $bg_sensitive;
+ @supports (backdrop-filter: blur(2rem)) {
+ background: transparent;
+ backdrop-filter: blur(2rem);
+ }
+
+ .button {
+ align-self: center;
+ justify-self: center;
+ }
+ }
+ }
+
.no-image-desc {
+ color: $button_fg;
display: flex;
position: absolute;
bottom: 0.1rem;
right: 0.4rem;
- color: white;
- background: $blue;
- padding: 0.2rem 0.4rem;
+ margin-bottom: 0.4rem;
+ margin-right: 0.4rem;
+ background: $bg_no_img_desc;
+ padding: 0.1rem 0.45rem;
border-radius: 100%;
+ border: 0.2rem solid $button_fg;
z-index: 3;
i.fa {
display: block;
- line-height: 1.3rem;
+ line-height: 1.6rem;
}
span {
@@ -219,14 +296,6 @@ main {
height: 100%;
object-fit: cover;
}
-
- &.single a {
- grid-column: span 2;
- }
-
- &.odd a:first-child, &.double a {
- grid-row: span 2;
- }
}
.info {
@@ -244,7 +313,7 @@ main {
}
grid-column: span 3;
- margin-top: 0.5rem;
+ margin-top: 1.5rem;
flex-wrap: wrap;
div.stats::after {
@@ -313,8 +382,8 @@ main {
}
.media {
- grid-auto-rows: 1fr;
- max-height: 120rem;
+ /* grid-auto-rows: 1fr; */
+ /* max-height: 120rem; */
}
}
}