Diferență între revizuiri ale paginii „MediaWiki:Mobile.css”

De la dexonline wiki
Sari la navigare Sari la căutare
(Pagină nouă: →‎CSS placed here will affect users of the mobile site: #mw-mf-last-modified { display: none; })
 
 
(Nu s-au afișat 4 versiuni intermediare efectuate de același utilizator)
Linia 1: Linia 1:
/* CSS placed here will affect users of the mobile site */
/* CSS placed here will affect users of the mobile site */


#mw-mf-last-modified {
/* hide the Last modified bar underneath the search box */
#content_wrapper .last-modified-bar {
   display: none;
   display: none;
}
/* Keep this in sync with Common.css. MobileFrontend only loads this file, not that one. */
@media (prefers-color-scheme: dark) {
  body {
    background-color: #000;
  }
  body, img, video {
    filter: invert(1) hue-rotate(180deg);
  }
}
}

Versiunea curentă din 5 octombrie 2021 14:24

/* CSS placed here will affect users of the mobile site */

/* hide the Last modified bar underneath the search box */
#content_wrapper .last-modified-bar {
  display: none;
}

/* Keep this in sync with Common.css. MobileFrontend only loads this file, not that one. */
@media (prefers-color-scheme: dark) {
  body {
    background-color: #000;
  }
  body, img, video {
    filter: invert(1) hue-rotate(180deg);
  }
}