Restore old border-radius behavior, fixes #266
This commit is contained in:
parent
72659f27c1
commit
9ac6f3aaab
7 changed files with 1 additions and 43 deletions
|
@ -27,7 +27,6 @@
|
||||||
@import 'dyslexic';
|
@import 'dyslexic';
|
||||||
@import 'demetricator';
|
@import 'demetricator';
|
||||||
@import 'pro';
|
@import 'pro';
|
||||||
@import 'overflow_hacks';
|
|
||||||
@import 'chats';
|
@import 'chats';
|
||||||
|
|
||||||
// COMPONENTS
|
// COMPONENTS
|
||||||
|
|
|
@ -322,7 +322,6 @@
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
background: var(--accent-color--faint);
|
background: var(--accent-color--faint);
|
||||||
border-radius: 10px 10px 0 0;
|
|
||||||
|
|
||||||
.column-back-button {
|
.column-back-button {
|
||||||
background: transparent;
|
background: transparent;
|
||||||
|
|
|
@ -212,7 +212,6 @@
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
line-height: inherit;
|
line-height: inherit;
|
||||||
border: 0;
|
border: 0;
|
||||||
border-radius: 10px 10px 0 0;
|
|
||||||
text-align: unset;
|
text-align: unset;
|
||||||
padding: 15px;
|
padding: 15px;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
|
|
@ -62,7 +62,6 @@
|
||||||
border-bottom: 1px solid var(--brand-color--faint);
|
border-bottom: 1px solid var(--brand-color--faint);
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
border-radius: 0 0 10px 10px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.detailed-status__link {
|
.detailed-status__link {
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
.column,
|
.column,
|
||||||
.drawer {
|
.drawer {
|
||||||
flex: 1 1 100%;
|
flex: 1 1 100%;
|
||||||
overflow: visible;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
.drawer__pager {
|
.drawer__pager {
|
||||||
|
|
|
@ -188,7 +188,6 @@
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
padding: 20px;
|
padding: 20px;
|
||||||
border-radius: 0 0 10px 10px;
|
|
||||||
|
|
||||||
& > div {
|
& > div {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
|
@ -1,37 +0,0 @@
|
||||||
// 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;
|
|
||||||
}
|
|
||||||
|
|
||||||
.slist .item-list .column-link {
|
|
||||||
background-color: transparent;
|
|
||||||
border-top: 1px solid var(--brand-color--med);
|
|
||||||
}
|
|
||||||
|
|
||||||
.focusable {
|
|
||||||
&:focus {
|
|
||||||
border-radius: 0 0 10px 10px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.load-more:hover {
|
|
||||||
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;
|
|
||||||
}
|
|
Loading…
Reference in a new issue