MediaWiki:Common.css: Difference between revisions
No edit summary |
No edit summary |
||
| Line 1: | Line 1: | ||
/* | /* === GLOBAL HEADER AREA BURGUNDY === */ | ||
body { | body { | ||
- | --header-background-color: #800020 !important; | ||
-- | --header-text-color: white !important; | ||
--header-border-color: #800020 !important; | |||
} | } | ||
/* | /* === BURGUNDY BACKGROUND FOR HEADER BAR === */ | ||
.vector-header, | .vector-header, | ||
.vector-header-container, | .vector-header-container, | ||
.vector-header- | .vector-sticky-header, | ||
.vector- | .vector-page-toolbar, | ||
.vector-page-toolbar-container { | |||
background-color: #800020 !important; | background-color: #800020 !important; | ||
color: white !important; | color: white !important; | ||
border: none !important; | |||
} | } | ||
/* | /* === SEARCH BAR FIX === */ | ||
.vector- | .vector-search-box { | ||
.vector- | background-color: white !important; | ||
.vector- | border-radius: 4px; | ||
background-color: | padding: 2px; | ||
} | |||
.vector-search-box input { | |||
color: black !important; | |||
} | |||
.vector-search-box button { | |||
background-color: #800020 !important; | |||
color: white !important; | color: white !important; | ||
border: none !important; | border: none !important; | ||
border-radius: 4px; | |||
} | } | ||
/* | /* === TOP TABS (Read, Edit...) === */ | ||
.vector- | .vector-tab, | ||
.vector-tab a { | |||
background: transparent !important; | |||
color: white !important; | |||
font-weight: bold; | |||
} | |||
.vector-tab a:hover { | |||
border-bottom: 2px solid white !important; | border-bottom: 2px solid white !important; | ||
} | } | ||
/* | /* === HIGHLIGHT SELECTED TAB === */ | ||
.vector-tab.selected a { | |||
border-bottom: 3px solid white !important; | |||
} | |||
/* === PERSONAL TOOLS (Editor, User Icon, etc.) === */ | |||
.vector-user-menu, | |||
.vector-user-menu a { | |||
color: white !important; | |||
} | |||
/* === CUSTOM LOGO REPLACEMENT === */ | |||
#p-logo { | #p-logo { | ||
background-image: url(/images/Transight_logo.png); /* | background-image: url(/images/Transight_logo.png); /* <- Update if needed */ | ||
background-repeat: no-repeat; | |||
background-size: contain; | background-size: contain; | ||
width: 220px; | width: 220px; | ||
height: 60px; | height: 60px; | ||
position: absolute; | position: absolute; | ||
top: | top: 0; | ||
left: 0; | left: 0; | ||
z-index: | z-index: 1000; | ||
} | } | ||
/* | /* Hide default logo text */ | ||
.vector-header .mw-wiki-logo { | |||
display: none; | |||
} | } | ||
Revision as of 05:32, 23 June 2025
/* === GLOBAL HEADER AREA BURGUNDY === */
body {
--header-background-color: #800020 !important;
--header-text-color: white !important;
--header-border-color: #800020 !important;
}
/* === BURGUNDY BACKGROUND FOR HEADER BAR === */
.vector-header,
.vector-header-container,
.vector-sticky-header,
.vector-page-toolbar,
.vector-page-toolbar-container {
background-color: #800020 !important;
color: white !important;
border: none !important;
}
/* === SEARCH BAR FIX === */
.vector-search-box {
background-color: white !important;
border-radius: 4px;
padding: 2px;
}
.vector-search-box input {
color: black !important;
}
.vector-search-box button {
background-color: #800020 !important;
color: white !important;
border: none !important;
border-radius: 4px;
}
/* === TOP TABS (Read, Edit...) === */
.vector-tab,
.vector-tab a {
background: transparent !important;
color: white !important;
font-weight: bold;
}
.vector-tab a:hover {
border-bottom: 2px solid white !important;
}
/* === HIGHLIGHT SELECTED TAB === */
.vector-tab.selected a {
border-bottom: 3px solid white !important;
}
/* === PERSONAL TOOLS (Editor, User Icon, etc.) === */
.vector-user-menu,
.vector-user-menu a {
color: white !important;
}
/* === CUSTOM LOGO REPLACEMENT === */
#p-logo {
background-image: url(/images/Transight_logo.png); /* <- Update if needed */
background-repeat: no-repeat;
background-size: contain;
width: 220px;
height: 60px;
position: absolute;
top: 0;
left: 0;
z-index: 1000;
}
/* Hide default logo text */
.vector-header .mw-wiki-logo {
display: none;
}