Jump to content

MediaWiki:Common.css: Difference between revisions

From Gigaverse Wiki
No edit summary
Tag: Reverted
No edit summary
Tag: Reverted
Line 15: Line 15:
ย ย  ย  display: inline-block !important;
ย ย  ย  display: inline-block !important;
}
}
ย 
/* โœ… Force proper list display on all screen sizes */
/* ๐Ÿ› ๏ธ Fix broken bullet lists on mobile */
ul, ul li {
ul {
ย ย  list-style-type: disc !important;
ย ย  list-style-type: disc !important;
ย  list-style-position: outside !important;
ย  display: list-item !important;
ย ย  margin-left: 1.5em !important;
ย ย  margin-left: 1.5em !important;
ย ย  padding-left: 0 !important;
ย ย  padding-left: 0 !important;
}
}


ul li {
/* โœ… Avoid Vector skin margin weirdness on mobile */
ย ย  display: list-item !important;
body.skin-vector .mw-parser-output ul {
ย ย  margin-left: 1.5em !important;
}
}

Revision as of 08:05, 27 June 2025

/* CSS placed here will be applied to all skins */

inputbox {
  text-align: left;
  margin-left: 0 !important;
}

.mw-inputbox-centered {
    margin: 0 !important;
    text-align: left !important;
    display: block !important;
}

.mw-inputbox-centered form {
    display: inline-block !important;
}
/* โœ… Force proper list display on all screen sizes */
ul, ul li {
  list-style-type: disc !important;
  list-style-position: outside !important;
  display: list-item !important;
  margin-left: 1.5em !important;
  padding-left: 0 !important;
}

/* โœ… Avoid Vector skin margin weirdness on mobile */
body.skin-vector .mw-parser-output ul {
  margin-left: 1.5em !important;
}