MediaWiki:Common.css: Difference between revisions
Jump to navigation
Jump to search
(Fixed ordered lists) |
(No difference)
|
Latest revision as of 17:06, 27 September 2024
/* CSS placed here will be applied to all skins */
/* Fix ordered lists to follow the format:
/* 1.
/* a.
/* i.
/* Instead of the default:
/* 1.
/* 1.
/* 1.
/* -D2wn 2024-09-27 */
ol {
list-style-type: decimal;
}
ol li > ol {
list-style-type: lower-alpha;
}
ol li > ol li > ol {
list-style-type: lower-roman;
}