forked from indymedia/epicyon
Text on media timeline
parent
ec8860f782
commit
c9e801e005
|
@ -35,6 +35,8 @@
|
||||||
--button-height-padding: 10px;
|
--button-height-padding: 10px;
|
||||||
--gallery-border: #ccc;
|
--gallery-border: #ccc;
|
||||||
--gallery-hover: #777;
|
--gallery-hover: #777;
|
||||||
|
--gallery-font-size: 22px;
|
||||||
|
--gallery-font-size-mobile: 30px;
|
||||||
--button-corner-radius: 15px;
|
--button-corner-radius: 15px;
|
||||||
--timeline-border-radius: 30px;
|
--timeline-border-radius: 30px;
|
||||||
}
|
}
|
||||||
|
@ -582,6 +584,10 @@ div.gallery img {
|
||||||
body, html {
|
body, html {
|
||||||
font-size: var(--font-size4);
|
font-size: var(--font-size4);
|
||||||
}
|
}
|
||||||
|
div.gallerytext {
|
||||||
|
color: var(--main-fg-color);
|
||||||
|
font-size: var(--gallery-font-size);
|
||||||
|
}
|
||||||
div.gallery {
|
div.gallery {
|
||||||
margin: 5px;
|
margin: 5px;
|
||||||
border: 1px solid var(--gallery-border);
|
border: 1px solid var(--gallery-border);
|
||||||
|
@ -867,6 +873,10 @@ div.gallery img {
|
||||||
body, html {
|
body, html {
|
||||||
font-size: var(--font-size3);
|
font-size: var(--font-size3);
|
||||||
}
|
}
|
||||||
|
div.gallerytext {
|
||||||
|
color: var(--main-fg-color);
|
||||||
|
font-size: var(--gallery-font-size-mobile);
|
||||||
|
}
|
||||||
div.gallery {
|
div.gallery {
|
||||||
margin: 5px;
|
margin: 5px;
|
||||||
border: 1px solid var(--gallery-border);
|
border: 1px solid var(--gallery-border);
|
||||||
|
|
|
@ -2193,7 +2193,9 @@ def individualPostAsHtml(recentPostsCache: {},maxRecentPosts: int, \
|
||||||
galleryStr+='<div class="gallery">\n'
|
galleryStr+='<div class="gallery">\n'
|
||||||
galleryStr+=' <a href="'+attach['url']+'">\n'
|
galleryStr+=' <a href="'+attach['url']+'">\n'
|
||||||
galleryStr+=' <img loading="lazy" src="'+attach['url']+'" alt="'+imageDescription+'" title="'+imageDescription+'" width="600" height="400">\n'
|
galleryStr+=' <img loading="lazy" src="'+attach['url']+'" alt="'+imageDescription+'" title="'+imageDescription+'" width="600" height="400">\n'
|
||||||
galleryStr+=' </a>\n</div>\n'
|
galleryStr+=' </a>\n'
|
||||||
|
galleryStr+=' <div class="gallerytext">'+contentStrMedia+'</div>\n'
|
||||||
|
galleryStr+='</div>\n'
|
||||||
|
|
||||||
attachmentStr+='<a href="'+attach['url']+'">'
|
attachmentStr+='<a href="'+attach['url']+'">'
|
||||||
attachmentStr+='<img loading="lazy" src="'+attach['url']+'" alt="'+imageDescription+'" title="'+imageDescription+'" class="attachment"></a>\n'
|
attachmentStr+='<img loading="lazy" src="'+attach['url']+'" alt="'+imageDescription+'" title="'+imageDescription+'" class="attachment"></a>\n'
|
||||||
|
@ -2436,6 +2438,8 @@ def individualPostAsHtml(recentPostsCache: {},maxRecentPosts: int, \
|
||||||
# replace 's
|
# replace 's
|
||||||
contentStr=contentStr.replace("\ufffd\ufffd\ufffds","'s")
|
contentStr=contentStr.replace("\ufffd\ufffd\ufffds","'s")
|
||||||
|
|
||||||
|
contentStrMedia=contentStr
|
||||||
|
|
||||||
contentStr='<div class="message">'+contentStr+'</div>'
|
contentStr='<div class="message">'+contentStr+'</div>'
|
||||||
|
|
||||||
postHtml=''
|
postHtml=''
|
||||||
|
|
Loading…
Reference in New Issue