4,554
edits
No edit summary |
No edit summary |
||
Line 220: | Line 220: | ||
/* Mod line */ | /* Mod line */ | ||
.article-mod-line{ | .article-mod-line{ | ||
display: | display: inline-flex; | ||
justify-content: flex-start !important; | |||
align-items: baseline; | |||
gap: 0; /* we’ll control spacing ourselves */ | |||
white-space: nowrap; | white-space: nowrap; | ||
word-spacing: normal !important; | word-spacing: normal !important; | ||
} | } | ||
.article-mod-line > span{ | |||
.article-mod-line span{ | flex: 0 0 auto; /* don't grow or shrink */ | ||
margin: 0 !important; | margin: 0 !important; | ||
padding: 0 !important; | padding: 0 !important; | ||
} | |||
/* remove any legacy “+ span” spacing */ | |||
.article-mod-line > span + span{ margin-left: 0 !important; } | |||
/* add a tiny space only before the LAST label */ | |||
.article-mod-line .article-label-modification-date:last-of-type{ | |||
margin-left: 0.25ch; /* ~quarter character space */ | |||
} | } | ||