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