Handle right column overflow

merge-requests/8/head
Bob Mottram 2020-10-31 21:56:12 +00:00
parent abc81ec464
commit c48bc11d8f
1 changed files with 5 additions and 0 deletions

View File

@ -1087,6 +1087,7 @@ div.container {
.timeline {
border: 0;
width: 100vw;
table-layout: fixed;
}
.col-left a:link {
background: var(--column-left-color);
@ -1137,6 +1138,7 @@ div.container {
.column-right {
background-color: var(--column-left-color);
width: var(--column-right-width);
overflow: hidden;
}
.col-right {
background-color: var(--column-left-color);
@ -1145,6 +1147,7 @@ div.container {
padding-right: 30px;
font-size: var(--font-size-links);
width: var(--column-right-width);
overflow: hidden;
}
.col-right img.rightColEdit {
background: var(--column-left-color);
@ -1761,6 +1764,8 @@ div.container {
.timeline {
border: 0;
width: 100vw;
table-layout: fixed;
overflow: hidden;
}
.column-left {
display: none;