Improve single image html
This commit is contained in:
parent
418168e570
commit
e663b04761
|
@ -12,6 +12,7 @@
|
||||||
|
|
||||||
.still-image {
|
.still-image {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
display: block;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -66,7 +67,14 @@
|
||||||
|
|
||||||
.single-image {
|
.single-image {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
|
width: 100%;
|
||||||
|
max-height: 600px;
|
||||||
|
|
||||||
|
.attachments {
|
||||||
width: unset;
|
width: unset;
|
||||||
|
max-height: unset;
|
||||||
|
display: inherit;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.overlay-circle {
|
.overlay-circle {
|
||||||
|
|
|
@ -31,10 +31,15 @@ proc renderAlbum(tweet: Tweet): VNode =
|
||||||
let
|
let
|
||||||
groups = if tweet.photos.len < 3: @[tweet.photos]
|
groups = if tweet.photos.len < 3: @[tweet.photos]
|
||||||
else: tweet.photos.distribute(2)
|
else: tweet.photos.distribute(2)
|
||||||
class = if groups.len == 1 and groups[0].len == 1: "single-image"
|
|
||||||
else: ""
|
|
||||||
|
|
||||||
buildHtml(tdiv(class=("attachments " & class))):
|
if groups.len == 1 and groups[0].len == 1:
|
||||||
|
buildHtml(tdiv(class="single-image")):
|
||||||
|
tdiv(class="attachments gallery-row"):
|
||||||
|
a(href=getPicUrl(groups[0][0] & "?name=orig"), class="still-image",
|
||||||
|
target="_blank"):
|
||||||
|
genImg(groups[0][0])
|
||||||
|
else:
|
||||||
|
buildHtml(tdiv(class="attachments")):
|
||||||
for i, photos in groups:
|
for i, photos in groups:
|
||||||
let margin = if i > 0: ".25em" else: ""
|
let margin = if i > 0: ".25em" else: ""
|
||||||
let flex = if photos.len > 1 or groups.len > 1: "flex" else: "block"
|
let flex = if photos.len > 1 or groups.len > 1: "flex" else: "block"
|
||||||
|
|
Loading…
Reference in New Issue