mirror of
https://github.com/redlib-org/redlib.git
synced 2025-04-04 21:47:40 +03:00
adapt to .post_thumbnail being a wrapper + add unblur on click styles
This commit is contained in:
parent
3f33a73001
commit
6e7de2f966
1 changed files with 26 additions and 2 deletions
|
@ -1141,10 +1141,11 @@ a.search_subreddit:hover {
|
|||
filter: blur(0.25rem);
|
||||
}
|
||||
|
||||
.post_blurred .post_thumbnail * {
|
||||
.post_blurred .post_thumbnail a * {
|
||||
filter: blur(0.3rem);
|
||||
}
|
||||
|
||||
/* Unblur on hover */
|
||||
.post_blurred .post_media_content:hover *,
|
||||
.post_blurred .post_media_content:hover ~ .post_body,
|
||||
.post_blurred .post_media_content:has(~ .post_body:hover) *,
|
||||
|
@ -1153,6 +1154,22 @@ a.search_subreddit:hover {
|
|||
filter: none;
|
||||
}
|
||||
|
||||
/* Unblur on click */
|
||||
.post_blurred .post_media_content a,
|
||||
.post_blurred .post_body a,
|
||||
.post_blurred .post_thumbnail a {
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.post_blurred .post_media_content:focus *,
|
||||
.post_blurred .post_media_content:focus ~ .post_body,
|
||||
.post_blurred .post_media_content:has(~ .post_body:focus) *,
|
||||
.post_blurred .post_body:focus,
|
||||
.post_blurred .post_thumbnail:focus * {
|
||||
filter: none;
|
||||
pointer-events: auto;
|
||||
}
|
||||
|
||||
.post_media_image svg {
|
||||
max-width: 100%;
|
||||
height: auto;
|
||||
|
@ -1306,13 +1323,16 @@ a.search_subreddit:hover {
|
|||
.post_thumbnail {
|
||||
border-radius: 5px;
|
||||
border: var(--panel-border);
|
||||
display: grid;
|
||||
overflow: hidden;
|
||||
background-color: var(--background);
|
||||
grid-area: post_thumbnail;
|
||||
margin: 5px;
|
||||
}
|
||||
|
||||
.post_thumbnail a {
|
||||
display: grid;
|
||||
}
|
||||
|
||||
.post_thumbnail div {
|
||||
grid-area: 1 / 1 / 2 / 2;
|
||||
object-fit: cover;
|
||||
|
@ -1334,6 +1354,10 @@ a.search_subreddit:hover {
|
|||
background-color: var(--highlighted);
|
||||
}
|
||||
|
||||
.post_thumbnail.no_thumbnail a {
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.post_thumbnail.no_thumbnail svg {
|
||||
grid-area: 1 / 1 / 2 / 2;
|
||||
align-self: center;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue