4,554
edits
No edit summary |
No edit summary |
||
Line 220: | Line 220: | ||
/* Mod line */ | /* Mod line */ | ||
.article-mod-line > span + span { margin-left: 0 !important; } | |||
/* one tight, unbreakable line */ | |||
.article-mod-line{ | .article-mod-line{ | ||
display: | display: block; /* keeps your row/border layout happy */ | ||
white-space: nowrap; /* never wrap */ | |||
font-size: 0; /* <- collapses ALL inter-element gaps */ | |||
letter-spacing: 0; /* no extra spacing from container */ | |||
color: grey; | |||
line-height: 1.05; | |||
margin: 5px 0 0 0 !important; | |||
padding: 0 !important; | |||
} | |||
/* restore typography per piece */ | |||
.article-mod-line span{ | |||
display: inline-block; /* precise control */ | |||
font-size: 10px; /* restore text size */ | |||
letter-spacing: 0.3px; | |||
white-space: nowrap; | white-space: nowrap; | ||
margin: 0 !important; | margin: 0 !important; | ||
padding: 0 !important; | padding: 0 !important; | ||
} | } | ||
/* | /* tiny *controlled* gap only around the date */ | ||
.article | .article-modification-date{ | ||
font-size: 11px; | font-size: 11px; | ||
letter-spacing: 0.3px; | letter-spacing: 0.3px; | ||
color: grey; | color: grey; | ||
margin: 0 .25ch !important; /* ~quarter character on both sides */ | |||
} | } | ||