Merge branch 'style-hotfixes' into 'develop'
slight overflow improvements, fixes #303 Closes #303 See merge request soapbox-pub/soapbox-fe!160
This commit is contained in:
commit
c766e5cd57
1 changed files with 21 additions and 1 deletions
|
@ -12,10 +12,30 @@ button.column-header__button.active {
|
||||||
}
|
}
|
||||||
|
|
||||||
.detailed-status__wrapper .detailed-status__action-bar {
|
.detailed-status__wrapper .detailed-status__action-bar {
|
||||||
border-radius: 0;
|
border-radius: 0 0 10px 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.slist .item-list .column-link {
|
.slist .item-list .column-link {
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
border-top: 1px solid var(--brand-color--med);
|
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;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue