MediaWiki:Common.css: Difference between revisions
Appearance
Created page with "→CSS placed here will be applied to all skins: #ns-tree .mw-allpages-body { column-count: 1 !important; } #ns-tree .mw-allpages-chunk { display: block !important; width: 100% !important; }" |
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 */ | ||
#ns-tree | /* Remove bullets completely */ | ||
#ns-tree ul { | |||
list-style: none !important; | |||
padding-left: 0 !important; | |||
margin-left: 0 !important; | |||
} | } | ||
#ns-tree | /* Also remove bullets from nested lists (important) */ | ||
#ns-tree li { | |||
list-style: none !important; | |||
} | |||
/* Clean spacing */ | |||
#ns-tree li { | |||
margin-bottom: 3px; | |||
} | |||
/* Link styling */ | |||
#ns-tree a { | |||
text-decoration: none; | |||
} | |||
#ns-tree a:hover { | |||
text-decoration: underline; | |||
} | } | ||
Revision as of 14:06, 11 April 2026
/* CSS placed here will be applied to all skins */
/* Remove bullets completely */
#ns-tree ul {
list-style: none !important;
padding-left: 0 !important;
margin-left: 0 !important;
}
/* Also remove bullets from nested lists (important) */
#ns-tree li {
list-style: none !important;
}
/* Clean spacing */
#ns-tree li {
margin-bottom: 3px;
}
/* Link styling */
#ns-tree a {
text-decoration: none;
}
#ns-tree a:hover {
text-decoration: underline;
}