feat(core): add indent line to changelist

This commit is contained in:
alistair3149 2024-09-11 02:46:55 -04:00
parent 2c862b0cc1
commit a00fe11e78
No known key found for this signature in database
GPG key ID: 16076C01E5C88864

View file

@ -46,6 +46,21 @@
&-inner {
color: var( --color-subtle );
}
/* Add nested indent line */
> td:first-child {
position: relative;
&::before {
position: absolute;
top: 0;
bottom: 0;
left: 5px;
width: 2px;
content: '';
background: var( --border-color-base );
}
}
}
&-separator {
@ -176,7 +191,7 @@ body:not( .mw-rcfilters-ui-initialized ) .mw-rcfilters-head {
content: '';
background-color: var( --color-subtle );
border-radius: 100%;
outline: 4px solid var( --border-color-base );
outline: 4px solid var( --color-surface-0 );
}
.comment {