MediaWiki:Common.css: Difference between revisions

From Information Revolt
Jump to navigation Jump to search
Created page with "CSS placed here will be applied to all skins: Nested bullet styles: ul { list-style-type: disc; first-level bullets: } ul ul { list-style-type: circle; second-level bullets: } ul ul ul { list-style-type: square; third-level bullets: } ul ul ul ul { list-style-type: decimal; fourth-level bullets: }"
(No difference)

Revision as of 23:26, 5 October 2025

/* CSS placed here will be applied to all skins */
/* Nested bullet styles */
ul {
    list-style-type: disc;       /* first-level bullets */
}
ul ul {
    list-style-type: circle;     /* second-level bullets */
}
ul ul ul {
    list-style-type: square;     /* third-level bullets */
}
ul ul ul ul {
    list-style-type: decimal;    /* fourth-level bullets */
}