mirror of https://github.com/tootsuite/mastodon
Fix column borders disappearing in advanced interface on low width viewports (#29763)
parent
c4feba4347
commit
b2d841ce9a
|
@ -2890,24 +2890,31 @@ $ui-header-height: 55px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.layout-single-column .ui__header {
|
.layout-single-column {
|
||||||
display: flex;
|
.ui__header {
|
||||||
background: var(--background-color-tint);
|
display: flex;
|
||||||
border-bottom: 1px solid var(--background-border-color);
|
background: var(--background-color-tint);
|
||||||
}
|
border-bottom: 1px solid var(--background-border-color);
|
||||||
|
}
|
||||||
|
|
||||||
.column > .scrollable,
|
.column > .scrollable,
|
||||||
.tabs-bar__wrapper .column-header,
|
.tabs-bar__wrapper .column-header,
|
||||||
.tabs-bar__wrapper .column-back-button {
|
.tabs-bar__wrapper .column-back-button {
|
||||||
border-left: 0;
|
border-left: 0;
|
||||||
border-right: 0;
|
border-right: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.column-header,
|
.column-header,
|
||||||
.column-back-button,
|
.column-back-button,
|
||||||
.scrollable,
|
.scrollable,
|
||||||
.error-column {
|
.error-column {
|
||||||
border-radius: 0 !important;
|
border-radius: 0 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.column-header,
|
||||||
|
.column-back-button {
|
||||||
|
border-top: 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -3466,10 +3473,6 @@ $ui-header-height: 55px;
|
||||||
&:hover {
|
&:hover {
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: $no-gap-breakpoint) {
|
|
||||||
border-top: 0;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.column-header__back-button {
|
.column-header__back-button {
|
||||||
|
@ -4233,10 +4236,6 @@ a.status-card {
|
||||||
padding-top: 16px;
|
padding-top: 16px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: $no-gap-breakpoint) {
|
|
||||||
border-top: 0;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.column-header__buttons {
|
.column-header__buttons {
|
||||||
|
|
Loading…
Reference in New Issue