feat(core): tweak changelist and toc border width

This commit is contained in:
alistair3149 2024-07-19 18:31:22 -04:00
parent bd0cea79e4
commit b9cd27043d
No known key found for this signature in database
2 changed files with 6 additions and 8 deletions

View file

@ -12,7 +12,7 @@
&__list {
margin: 0 0 0 var( --space-xs );
list-style: none;
border-left: var( --border-width-base ) solid var( --border-color-base );
border-left: var( --border-width-thick ) solid var( --border-color-base );
.citizen-toc__link {
border-top-left-radius: 0;
@ -27,7 +27,6 @@
padding: var( --space-xs );
font-weight: var( --font-weight-medium );
color: var( --color-emphasized );
border-radius: var( --border-radius-base );
&.citizen-toc__top {
height: 0;
@ -57,11 +56,10 @@
bottom: 0;
left: 0;
flex-shrink: 0;
width: 3px;
width: var( --border-width-thick );
margin-top: var( --space-xs );
margin-bottom: var( --space-xs );
margin-left: -2px;
border-radius: var( --border-radius-pill );
margin-left: ~'calc( var( --border-width-thick ) * -1 )';
}
&__text {

View file

@ -137,10 +137,10 @@ body:not( .mw-rcfilters-ui-initialized ) .mw-rcfilters-head {
position: absolute;
top: 0;
bottom: 0;
left: 4px;
width: 1px;
left: ~'calc( var( --border-width-thick ) + 1px )';
width: var( --border-width-thick );
content: '';
background: var( --border-color-interactive );
background: var( --border-color-base );
}
}