Thread: improve padding between posts
This commit is contained in:
parent
c264a5fb47
commit
d6af6468d7
|
@ -573,7 +573,7 @@ class Status extends ImmutablePureComponent {
|
||||||
};
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Column label={intl.formatMessage(messages.detailedStatus)} showBackBtn={false}>
|
<Column label={intl.formatMessage(messages.detailedStatus)} transparent>
|
||||||
<SubNavigation message={intl.formatMessage(messages.title)} />
|
<SubNavigation message={intl.formatMessage(messages.title)} />
|
||||||
{/*
|
{/*
|
||||||
Eye icon to show/hide all CWs in a thread.
|
Eye icon to show/hide all CWs in a thread.
|
||||||
|
|
|
@ -158,6 +158,14 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.thread {
|
.thread {
|
||||||
|
@include standard-panel;
|
||||||
|
border-top-left-radius: 0;
|
||||||
|
border-top-right-radius: 0;
|
||||||
|
|
||||||
|
@media screen and (max-width: 580px) {
|
||||||
|
border-radius: 0;
|
||||||
|
}
|
||||||
|
|
||||||
&__status {
|
&__status {
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
||||||
|
@ -167,6 +175,19 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&__descendants .thread__status:first-child {
|
||||||
|
margin-top: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
&__status--focused:first-child,
|
||||||
|
&__ancestors &__status:first-child {
|
||||||
|
margin-top: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
&__descendants &__status:last-child {
|
||||||
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
&__connector {
|
&__connector {
|
||||||
background: hsla(var(--primary-text-color_hsl), 0.2);
|
background: hsla(var(--primary-text-color_hsl), 0.2);
|
||||||
position: absolute;
|
position: absolute;
|
||||||
|
|
Loading…
Reference in New Issue