MediaWiki:Vector.css: Difference between revisions
m some style fixtures |
m more style fixtures |
||
Line 10: | Line 10: | ||
color: #ffe453; /* link color */ | color: #ffe453; /* link color */ | ||
} | } | ||
a:visited { | #pt-userpage-2 a { | ||
color: #ffe453; /* top user page link color */ | |||
} | |||
a:visited, .mw-list-item a:visited { | |||
color: #ffa42e; /* visited link color */ | color: #ffa42e; /* visited link color */ | ||
} | } | ||
Line 16: | Line 19: | ||
color: white; /* topic color */ | color: white; /* topic color */ | ||
} | } | ||
li::marker { | .vector-toc .vector-toc-list-item-active > .vector-toc-link { | ||
color: #ffa42e; /* active contents link color */ | |||
} | |||
ul li::marker { | |||
color: #f0f0f0; /* wiki page list marker color */ | color: #f0f0f0; /* wiki page list marker color */ | ||
} | } | ||
Line 27: | Line 33: | ||
.vector-toc .vector-toc-list-item { | .vector-toc .vector-toc-list-item { | ||
padding-left: 0px; /* fix left contents menu pedding */ | padding-left: 0px; /* fix left contents menu pedding */ | ||
} | |||
.vector-column-start .vector-sticky-pinned-container { | |||
margin-left: 0px; /* fix left contents menu alignment */ | |||
} | } | ||
.vector-menu-tabs .mw-list-item.selected a, .vector-menu-tabs .mw-list-item.selected a:visited { | .vector-menu-tabs .mw-list-item.selected a, .vector-menu-tabs .mw-list-item.selected a:visited { |
Revision as of 14:47, 1 September 2024
/* Dark BOTF-Wiki style for the Vector skin. */ /* Globally applied through MediaWiki:Vector.css page. */ /* Editing requires interface administrator permission. */ .skin-vector { --background-color-base: #363636; /* wiki background color */ background-color: #202020; /* outer background color */ color: #f0f0f0; /* wiki page font color */ a, a.external, .mw-list-item a, .vector-toc .vector-toc-link { color: #ffe453; /* link color */ } #pt-userpage-2 a { color: #ffe453; /* top user page link color */ } a:visited, .mw-list-item a:visited { color: #ffa42e; /* visited link color */ } .mw-heading, .vector-menu-heading, h1, h2, h3, h4, h5, h6 { color: white; /* topic color */ } .vector-toc .vector-toc-list-item-active > .vector-toc-link { color: #ffa42e; /* active contents link color */ } ul li::marker { color: #f0f0f0; /* wiki page list marker color */ } .vector-pinned-container { background-color: #2d2d2d; /* left and right tool boxes */ } .vector-toc .vector-pinnable-header { margin-left: 0px; /* fix left contents menu pedding */ } .vector-toc .vector-toc-list-item { padding-left: 0px; /* fix left contents menu pedding */ } .vector-column-start .vector-sticky-pinned-container { margin-left: 0px; /* fix left contents menu alignment */ } .vector-menu-tabs .mw-list-item.selected a, .vector-menu-tabs .mw-list-item.selected a:visited { color: white; /* menu tabs*/ } .vector-icon { filter: invert(100%); /* invert icon colors */ -webkit-filter: invert(100%); } .cdx-button:enabled.cdx-button--weight-quiet:hover, .cdx-button.cdx-button--fake-button--enabled.cdx-button--weight-quiet:hover { background-color: #606060; /* hovered button color */ } .mw-footer li { color: #f0f0f0; /* footer color */ } code, .mw-code { background-color: #2d2d2d; /* code box color */ color: #f0f0f0; /* code font color */ } }