MediaWiki:Timeless.css: Unterschied zwischen den Versionen

(+explainer)
(only show timeless-pagetitle in mobile view; for desktop view the logo is enough)
Zeile 11: Zeile 11:
 
#mw-header-nav-hack, #mw-header-hack {
 
#mw-header-nav-hack, #mw-header-hack {
 
position: static;
 
position: static;
 +
}
 +
 +
/* only show timeless-pagetitle in mobile view; for desktop view the logo is enough */
 +
@media screen and (min-width: 851px) {
 +
#p-logo-text {
 +
    display: none;
 +
  }
 
}
 
}

Version vom 2. August 2025, 21:26 Uhr

/* CSS placed here will affect users of the Timeless skin */

/* don't keep the top bar static, let it scroll with the content */
#mw-content-container {
	margin-top: 0em;
	padding-bottom: 1em;
}
#mw-header-container {
	position: static;
}
#mw-header-nav-hack, #mw-header-hack {
	position: static;
}

/* only show timeless-pagetitle in mobile view; for desktop view the logo is enough */
@media screen and (min-width: 851px) {
 #p-logo-text {
    display: none;
  }
}