bigbuffet-rw/app/styles/overflow_hacks.scss

42 lines
979 B
SCSS
Raw Normal View History

2020-08-10 13:05:24 -07:00
// This is a file dedicated to fixing the css we broke by introducing the hover
// card and `overflow:visible` on drawer.scss line 23. If we ever figure out how
// to pop the hover card out while keeping `overflow:hidden`, feel free to delete
// this entire file.
button.column-header__button.active {
border-radius: 0 10px 0 0;
}
.column-back-button.column-back-button--slim-button {
border-radius: 0 10px 0 0;
}
.detailed-status__wrapper .detailed-status__action-bar {
border-radius: 0 0 10px 10px;
2020-08-10 13:05:24 -07:00
}
2020-08-10 14:35:34 -07:00
.slist .item-list .column-link {
background-color: transparent;
border-top: 1px solid var(--brand-color--med);
}
.focusable {
&:focus {
border-radius: 0 0 10px 10px;
}
}
.focusable:focus .status.status-direct {
border-radius: 0 0 10px 10px;
}
.status.status-direct:not(.read) {
border-radius: 0 0 10px 10px;
}
// this still looks like shit but at least it's better than it overflowing
.empty-column-indicator {
border-radius: 0 0 10px 10px;
}