MediaWiki:Print.css: Difference between revisions

Jump to navigation Jump to search
no edit summary
No edit summary
No edit summary
Line 202: Line 202:
.article-reflection,
.article-reflection,
.article-external-reference,
.article-external-reference,
.article-quote,
.article-quote {
.article-mod-line {
   text-indent: 20px;
   text-indent: 20px;
   line-height: 1.15;
   line-height: 1.15;
Line 220: Line 219:


/* Mod line */
/* Mod line */
.article-mod-line > span + span { margin-left: 0 !important; }
/* Mod line — keep everything on one snug line */
 
.article-mod-line {
/* one tight, unbreakable line */
   display: block;                 /* normal block, not flex */
.article-mod-line{
   white-space: nowrap !important; /* never wrap */
   display: block;           /* keeps your row/border layout happy */
   font-size: 0 !important;       /* kill inter-span whitespace gaps */
   white-space: nowrap;       /* never wrap */
   letter-spacing: 0 !important;   /* container adds no spacing */
   font-size: 0;             /* <- collapses ALL inter-element gaps */
  text-indent: 0 !important;      /* no first-line indent */
   letter-spacing: 0;         /* no extra spacing from container */
  line-height: 1.05;
   color: grey;
   color: grey;
  line-height: 1.05;
   margin: 5px 0 0 0 !important;
   margin: 5px 0 0 0 !important;
   padding: 0 !important;
   padding: 0 !important;
Line 235: Line 233:


/* restore typography per piece */
/* restore typography per piece */
.article-mod-line span{
.article-mod-line span {
   display: inline-block;     /* precise control */
   display: inline;               /* exact inline flow */
   font-size: 10px;           /* restore text size */
   font-size: 10px !important;     /* bring back size */
   letter-spacing: 0.3px;
   letter-spacing: 0.3px;
   white-space: nowrap;
   white-space: nowrap;
Line 244: Line 242:
}
}


/* tiny *controlled* gap only around the date */
/* tiny controlled space around the date only */
.article-modification-date{
.article-modification-date {
   font-size: 11px;
   font-size: 11px !important;
   letter-spacing: 0.3px;
   letter-spacing: 0.3px;
   color: grey;
   color: grey;
   margin: 0 .25ch !important;   /* ~quarter character on both sides */
   margin: 0 .25ch !important;     /* small gap on both sides */
}
}


Navigation menu