mirror of
https://github.com/redlib-org/redlib.git
synced 2025-04-03 04:57:38 +03:00
Merge c71661c616
into cbc3e49923
This commit is contained in:
commit
519e927060
2 changed files with 121 additions and 5 deletions
111
static/style.css
111
static/style.css
|
@ -223,8 +223,8 @@ nav #redlib {
|
|||
vertical-align: -2px;
|
||||
}
|
||||
|
||||
figcaption {
|
||||
margin-top: 5px;
|
||||
figcaption p {
|
||||
margin: 5px 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
|
@ -1116,6 +1116,13 @@ a.search_subreddit:hover {
|
|||
overflow: hidden;
|
||||
}
|
||||
|
||||
.post_media_content:not(:has(.post_media_video)),
|
||||
.post_media_video,
|
||||
.gallery {
|
||||
border: var(--panel-border);
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
.post_media_video {
|
||||
min-width: 100px;
|
||||
max-width: 100px;
|
||||
|
@ -1173,9 +1180,107 @@ a.search_subreddit:hover {
|
|||
vertical-align: bottom;
|
||||
}
|
||||
|
||||
.gallery {
|
||||
display: flex;
|
||||
flex-flow: row nowrap;
|
||||
align-items: center;
|
||||
overflow-x: auto;
|
||||
scroll-snap-type: x mandatory;
|
||||
overscroll-behavior-x: none;
|
||||
background: var(--background);
|
||||
transition: background 0.2s;
|
||||
}
|
||||
|
||||
.post:hover .gallery {
|
||||
background: var(--post);
|
||||
}
|
||||
|
||||
.gallery figure {
|
||||
flex: 1 0 100%;
|
||||
scroll-snap-align: center;
|
||||
scroll-snap-stop: always;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.gallery_overlay {
|
||||
flex: 1 0 100%;
|
||||
height: 100%;
|
||||
position: sticky;
|
||||
left: 0;
|
||||
margin-left: -100%;
|
||||
pointer-events: none;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
transition: opacity 0.2s;
|
||||
}
|
||||
|
||||
.gallery:focus-within .gallery_overlay {
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
.gallery:not(:focus-within) .gallery_overlay * {
|
||||
pointer-events: auto;
|
||||
}
|
||||
|
||||
.gallery_length {
|
||||
position: absolute;
|
||||
right: 10px;
|
||||
top: 10px;
|
||||
padding: 10px;
|
||||
text-align: center;
|
||||
background-color: rgba(0, 0, 0, 0.8);
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
@supports not (animation-timeline: scroll()) {
|
||||
.gallery_progress {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
.gallery_progress {
|
||||
position: absolute;
|
||||
bottom: 10px;
|
||||
background-color: rgba(0, 0, 0, 0.8);
|
||||
border: 10px solid transparent;
|
||||
border-radius: 15px;
|
||||
display: flex;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.gallery_dot,
|
||||
.gallery_dot_indicator {
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
box-sizing: border-box;
|
||||
border: 1px solid var(--text);
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
.gallery_dot_indicator {
|
||||
background: var(--text);
|
||||
position: absolute;
|
||||
animation-name: galleryDotIndicatorScroll;
|
||||
animation-timeline: scroll(inline nearest);
|
||||
animation-timing-function: linear;
|
||||
}
|
||||
|
||||
@keyframes galleryDotIndicatorScroll {
|
||||
from {
|
||||
left: 0;
|
||||
}
|
||||
|
||||
to {
|
||||
left: 100%;
|
||||
transform: translateX(-100%);
|
||||
}
|
||||
}
|
||||
|
||||
.gallery img {
|
||||
display: block;
|
||||
margin: auto;
|
||||
max-width: 100%;
|
||||
vertical-align: bottom;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
.gallery .outbound_url {
|
||||
|
|
|
@ -138,17 +138,28 @@
|
|||
{% endif %}
|
||||
{% else if post.post_type == "gallery" %}
|
||||
<div class="gallery">
|
||||
{% for image in post.gallery -%}
|
||||
<div class="gallery_overlay" title="Hide overlay">
|
||||
<div class="gallery_length" tabindex="-1">gallery<br>({{ post.gallery.len() }} images)</div>
|
||||
<div class="gallery_progress" tabindex="-1">
|
||||
<!-- {% for _ in 0..post.gallery.len() %}
|
||||
<div class="gallery_dot"></div>
|
||||
{% endfor %} -->
|
||||
<div class="gallery_dot_indicator"></div>
|
||||
</div>
|
||||
</div>
|
||||
{% for image in post.gallery -%}
|
||||
<figure>
|
||||
<a href="{{ image.url }}" ><img loading="lazy" alt="Gallery image" src="{{ image.url }}"/></a>
|
||||
<figcaption>
|
||||
{% if !image.caption.is_empty() %}
|
||||
<p>{{ image.caption }}</p>
|
||||
{% endif %}
|
||||
{% if image.outbound_url.len() > 0 %}
|
||||
<p><a class="outbound_url" href="{{ image.outbound_url }}" rel="nofollow">{{ image.outbound_url }}</a>
|
||||
{% endif %}
|
||||
</figcaption>
|
||||
</figure>
|
||||
{%- endfor %}
|
||||
{%- endfor %}
|
||||
</div>
|
||||
{% else if post.post_type == "link" %}
|
||||
<a id="post_url" href="{{ post.media.url }}" rel="nofollow">{{ post.media.url }}</a>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue