border radius fixes
This commit is contained in:
parent
6ac0c615fe
commit
42a7a61ce7
|
@ -189,7 +189,9 @@ export default class DetailedStatus extends ImmutablePureComponent {
|
||||||
<NavLink to={`/@${status.getIn(['account', 'acct'])}`} title={status.getIn(['account', 'acct'])} className='floating-link' />
|
<NavLink to={`/@${status.getIn(['account', 'acct'])}`} title={status.getIn(['account', 'acct'])} className='floating-link' />
|
||||||
</DisplayName>
|
</DisplayName>
|
||||||
</div>
|
</div>
|
||||||
<ProfileHoverCardContainer accountId={status.getIn(['account', 'id'])} visible={!isMobile(window.innerWidth) && profileCardVisible} />
|
{ profileCardVisible &&
|
||||||
|
<ProfileHoverCardContainer accountId={status.getIn(['account', 'id'])} visible={!isMobile(window.innerWidth) && profileCardVisible} />
|
||||||
|
}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{status.get('group') && (
|
{status.get('group') && (
|
||||||
|
|
|
@ -27,6 +27,7 @@
|
||||||
@import 'dyslexic';
|
@import 'dyslexic';
|
||||||
@import 'demetricator';
|
@import 'demetricator';
|
||||||
@import 'pro';
|
@import 'pro';
|
||||||
|
@import 'overflow_hacks';
|
||||||
|
|
||||||
// COMPONENTS
|
// COMPONENTS
|
||||||
@import 'components/buttons';
|
@import 'components/buttons';
|
||||||
|
|
|
@ -201,7 +201,7 @@
|
||||||
@media screen and (max-width: 895px) {
|
@media screen and (max-width: 895px) {
|
||||||
.account-mobile-container {
|
.account-mobile-container {
|
||||||
display: block;
|
display: block;
|
||||||
background: var(--accent-color--faint);
|
background: var(--background-color);
|
||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
position: relative;
|
position: relative;
|
||||||
padding: 10px 10px 0;
|
padding: 10px 10px 0;
|
||||||
|
|
|
@ -0,0 +1,16 @@
|
||||||
|
// 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;
|
||||||
|
}
|
Loading…
Reference in New Issue