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

De la dexonline wiki
Sari la navigare Sari la căutare
 
(Nu s-au afișat 3 versiuni intermediare efectuate de același utilizator)
Linia 4: Linia 4:
#content_wrapper .last-modified-bar {
#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 13: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);
  }
}