mirror of
https://github.com/redlib-org/redlib.git
synced 2025-04-04 21:47:40 +03:00
use border width instead of padding
This commit is contained in:
parent
7b5643c27e
commit
c71661c616
2 changed files with 6 additions and 6 deletions
|
@ -1237,9 +1237,9 @@ a.search_subreddit:hover {
|
||||||
.gallery_progress {
|
.gallery_progress {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
bottom: 10px;
|
bottom: 10px;
|
||||||
padding: 10px;
|
|
||||||
background-color: rgba(0, 0, 0, 0.8);
|
background-color: rgba(0, 0, 0, 0.8);
|
||||||
border-radius: 20px;
|
border: 10px solid transparent;
|
||||||
|
border-radius: 15px;
|
||||||
display: flex;
|
display: flex;
|
||||||
gap: 10px;
|
gap: 10px;
|
||||||
}
|
}
|
||||||
|
@ -1263,11 +1263,11 @@ a.search_subreddit:hover {
|
||||||
|
|
||||||
@keyframes galleryDotIndicatorScroll {
|
@keyframes galleryDotIndicatorScroll {
|
||||||
from {
|
from {
|
||||||
left: 10px;
|
left: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
to {
|
to {
|
||||||
left: calc(100% - 10px);
|
left: 100%;
|
||||||
transform: translateX(-100%);
|
transform: translateX(-100%);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -139,9 +139,9 @@
|
||||||
<div class="gallery_overlay" title="Hide overlay">
|
<div class="gallery_overlay" title="Hide overlay">
|
||||||
<div class="gallery_length" tabindex="-1">gallery<br>({{ post.gallery.len() }} images)</div>
|
<div class="gallery_length" tabindex="-1">gallery<br>({{ post.gallery.len() }} images)</div>
|
||||||
<div class="gallery_progress" tabindex="-1">
|
<div class="gallery_progress" tabindex="-1">
|
||||||
{% for _ in 0..post.gallery.len() %}
|
<!-- {% for _ in 0..post.gallery.len() %}
|
||||||
<div class="gallery_dot"></div>
|
<div class="gallery_dot"></div>
|
||||||
{% endfor %}
|
{% endfor %} -->
|
||||||
<div class="gallery_dot_indicator"></div>
|
<div class="gallery_dot_indicator"></div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue