MediaWiki:Common.css: Difference between revisions
Jump to navigation
Jump to search
Craig Holly (talk | contribs) 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: }" |
Craig Holly (talk | contribs) No edit summary |
||
| Line 1: | Line 1: | ||
/* CSS placed here will be applied to all skins */ | /* CSS placed here will be applied to all skins */ | ||
/* Nested bullet styles */ | /* Nested bullet styles for all skins */ | ||
ul { | body ul { | ||
list-style-type: disc; /* first-level bullets */ | list-style-type: disc !important; /* first-level bullets */ | ||
} | } | ||
ul ul { | body ul ul { | ||
list-style-type: circle; /* second-level bullets */ | list-style-type: circle !important; /* second-level bullets */ | ||
} | } | ||
ul ul ul { | body ul ul ul { | ||
list-style-type: square; /* third-level bullets */ | list-style-type: square !important; /* third-level bullets */ | ||
} | } | ||
ul ul ul ul { | body ul ul ul ul { | ||
list-style-type: decimal; /* fourth-level bullets */ | list-style-type: decimal !important; /* fourth-level bullets */ | ||
} | } | ||
Revision as of 23:32, 5 October 2025
/* CSS placed here will be applied to all skins */
/* Nested bullet styles for all skins */
body ul {
list-style-type: disc !important; /* first-level bullets */
}
body ul ul {
list-style-type: circle !important; /* second-level bullets */
}
body ul ul ul {
list-style-type: square !important; /* third-level bullets */
}
body ul ul ul ul {
list-style-type: decimal !important; /* fourth-level bullets */
}