MediaWiki:Common.css: Difference between revisions
Appearance
No edit summary |
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 { | |||
border: 5px solid red !important; | |||
} | |||
/* Remove bullets completely */ | /* Remove bullets completely */ | ||
Revision as of 14:15, 11 April 2026
/* CSS placed here will be applied to all skins */
#ns-tree {
border: 5px solid red !important;
}
/* 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;
}