Difference between revisions of "MediaWiki:Common.css"
Jump to navigation
Jump to search
(Blanked the page) Tag: Blanking |
|||
| Line 1: | Line 1: | ||
| + | /* === Task 1: Vector-2022 left sidebar base styling === */ | ||
| + | .skin-vector-2022 #mw-panel { | ||
| + | /* Your dark vertical gradient */ | ||
| + | background: linear-gradient(to bottom, #2F2D2B 0%, #1E1E1D 100%) !important; | ||
| + | color: #EEEDEB !important; /* default text color inside sidebar */ | ||
| + | border-right: none !important; | ||
| + | } | ||
| + | /* Ensure inner containers don’t draw their own backgrounds */ | ||
| + | .skin-vector-2022 #mw-panel .vector-main-menu, | ||
| + | .skin-vector-2022 #mw-panel .vector-menu, | ||
| + | .skin-vector-2022 #mw-panel .vector-menu-content, | ||
| + | .skin-vector-2022 #mw-panel .vector-menu-content-list { | ||
| + | background: transparent !important; | ||
| + | color: inherit !important; | ||
| + | } | ||
| + | |||
| + | /* Links in the sidebar */ | ||
| + | .skin-vector-2022 #mw-panel a { color: #EEEDEB !important; text-decoration: none; } | ||
| + | .skin-vector-2022 #mw-panel a:hover { color: #5A65EA !important; text-decoration: underline; } | ||
Revision as of 08:45, 10 October 2025
/* === Task 1: Vector-2022 left sidebar base styling === */
.skin-vector-2022 #mw-panel {
/* Your dark vertical gradient */
background: linear-gradient(to bottom, #2F2D2B 0%, #1E1E1D 100%) !important;
color: #EEEDEB !important; /* default text color inside sidebar */
border-right: none !important;
}
/* Ensure inner containers don’t draw their own backgrounds */
.skin-vector-2022 #mw-panel .vector-main-menu,
.skin-vector-2022 #mw-panel .vector-menu,
.skin-vector-2022 #mw-panel .vector-menu-content,
.skin-vector-2022 #mw-panel .vector-menu-content-list {
background: transparent !important;
color: inherit !important;
}
/* Links in the sidebar */
.skin-vector-2022 #mw-panel a { color: #EEEDEB !important; text-decoration: none; }
.skin-vector-2022 #mw-panel a:hover { color: #5A65EA !important; text-decoration: underline; }