Post line separators

merge-requests/8/head
Bob Mottram 2020-11-06 21:25:47 +00:00
parent ee6e6b0a12
commit aad1cd0623
3 changed files with 8 additions and 0 deletions

View File

@ -90,6 +90,7 @@
--column-left-header-size-mobile: 50px;
--column-left-header-line-color: #555;
--column-left-header-line-width: 0;
--post-line-width: 0;
--column-left-icon-size: 20%;
--column-left-icon-size-mobile: 10%;
--column-left-image-width-mobile: 40vw;
@ -154,6 +155,10 @@ hr.linksLine {
border: var(--column-left-header-line-width) solid var(--column-left-header-line-color);
}
hr.postLine {
border: var(--post-line-width) solid var(--column-left-header-line-color);
}
.headericons {
display: inline-block;
float: right;

View File

@ -1021,6 +1021,7 @@ def setThemeIndymediaModern(baseDir: str):
themeParams = {
"column-left-header-line-color": "#BBBBBB",
"column-left-header-line-width": "1px",
"post-line-width": "1px",
"column-left-header-color": "black",
"column-left-header-background": "white",
"column-left-header-style": "none",
@ -1032,6 +1033,7 @@ def setThemeIndymediaModern(baseDir: str):
"column-right-icon-size": "11%",
"button-height-padding": "5px",
"icon-brightness-change": "70%",
"border-width": "0px",
"border-width-header": "0px",
"tab-border-width": "3px",
"tab-border-color": "grey",

View File

@ -7269,6 +7269,7 @@ def htmlTimeline(cssCache: {}, defaultTimeline: str,
if currTlStr:
itemCtr += 1
tlStr += '<hr class="postLine">\n'
tlStr += currTlStr
if boxName == 'tlmedia':
tlStr += '</div>\n'