Jump to content

MediaWiki:Common.css: Difference between revisions

From Gigaverse Wiki
No edit summary
Tag: Reverted
No edit summary
Tag: Manual revert
ย 
Line 14: Line 14:
.mw-inputbox-centered form {
.mw-inputbox-centered form {
ย ย  ย  display: inline-block !important;
ย ย  ย  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;
}
/* ๐Ÿ› ๏ธ Global fix for bullet lists */
.mw-parser-output ul,
.mw-parser-output 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;
}
}

Latest revision as of 08:07, 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;
}