mirror of https://gitlab.com/bashrc2/epicyon
Test strings
parent
4473292ceb
commit
ef2ef02d96
|
@ -941,13 +941,17 @@ aside .toggle-inside li {
|
||||||
width: 100vw;
|
width: 100vw;
|
||||||
}
|
}
|
||||||
.column-left {
|
.column-left {
|
||||||
float: left;
|
|
||||||
width: var(--column-left-width);
|
width: var(--column-left-width);
|
||||||
}
|
}
|
||||||
|
.col-left {
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
.column-right {
|
.column-right {
|
||||||
float: right;
|
|
||||||
width: var(--column-right-width);
|
width: var(--column-right-width);
|
||||||
}
|
}
|
||||||
|
.col-right {
|
||||||
|
float: right;
|
||||||
|
}
|
||||||
.column-center {
|
.column-center {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
width: var(--column-center-width);
|
width: var(--column-center-width);
|
||||||
|
@ -1418,13 +1422,17 @@ aside .toggle-inside li {
|
||||||
width: 100vw;
|
width: 100vw;
|
||||||
}
|
}
|
||||||
.column-left {
|
.column-left {
|
||||||
float: left;
|
|
||||||
width: 0%;
|
width: 0%;
|
||||||
}
|
}
|
||||||
|
.col-left {
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
.column-right {
|
.column-right {
|
||||||
float: right;
|
|
||||||
width: 0%;
|
width: 0%;
|
||||||
}
|
}
|
||||||
|
.col-right {
|
||||||
|
float: right;
|
||||||
|
}
|
||||||
.column-center {
|
.column-center {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
|
@ -5365,9 +5365,9 @@ def htmlTimeline(defaultTimeline: str,
|
||||||
tlStr += ' </colgroup>\n'
|
tlStr += ' </colgroup>\n'
|
||||||
tlStr += ' <tbody><tr>\n'
|
tlStr += ' <tbody><tr>\n'
|
||||||
# left column
|
# left column
|
||||||
tlStr += ' <td class="column-left"></td>\n'
|
tlStr += ' <td class="col-left">Test left</td>\n'
|
||||||
# center column containing posts
|
# center column containing posts
|
||||||
tlStr += ' <td class="column-center">\n'
|
tlStr += ' <td class="col-center">\n'
|
||||||
|
|
||||||
# start of the button header with inbox, outbox, etc
|
# start of the button header with inbox, outbox, etc
|
||||||
tlStr += ' <div class="container">\n'
|
tlStr += ' <div class="container">\n'
|
||||||
|
@ -5668,7 +5668,7 @@ def htmlTimeline(defaultTimeline: str,
|
||||||
|
|
||||||
# end of column-center
|
# end of column-center
|
||||||
tlStr += ' </td>\n'
|
tlStr += ' </td>\n'
|
||||||
tlStr += ' <td class="column-right"></td>\n'
|
tlStr += ' <td class="col-right">Test right</td>\n'
|
||||||
tlStr += ' </tbody>\n'
|
tlStr += ' </tbody>\n'
|
||||||
tlStr += '</table>\n'
|
tlStr += '</table>\n'
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue