MediaWiki:Print.css: Difference between revisions

Jump to navigation Jump to search
no edit summary
No edit summary
No edit summary
Line 220: Line 220:


/* Mod line */
/* Mod line */
/* kill any old spacing rules */
.article-mod-line > span + span { margin-left: 0 !important; }
/* inline row, no wrapping */
.article-mod-line{
.article-mod-line{
   display: block;             /* keeps your row/border behavior */
   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 */
   display: inline;
   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 */
}
}


Navigation menu