SubNavigation: improve display of DetailedStatus

This commit is contained in:
Alex Gleason
2021-09-27 14:42:35 -05:00
parent 8c1d6ab195
commit f8bd87c57f
2 changed files with 12 additions and 2 deletions

View File

@ -595,7 +595,7 @@ class Status extends ImmutablePureComponent {
/>
*/}
<div ref={this.setRef}>
<div ref={this.setRef} className='detailed-status-container'>
{ancestors}
<HotKeys handlers={handlers}>

View File

@ -112,7 +112,7 @@
.detailed-status__wrapper {
@include standard-panel;
margin: 10px 0;
margin-bottom: 10px;
position: relative;
overflow: hidden;
}
@ -159,3 +159,13 @@
float: left;
margin-right: 5px;
}
.detailed-status-container {
> div:first-child {
.status-container .status__wrapper,
.detailed-status__wrapper {
border-top-left-radius: 0;
border-top-right-radius: 0;
}
}
}