MediaWiki:Common.css: Difference between revisions
Appearance
Content deleted Content added
No edit summary Tag: Reverted |
No edit summary Tag: Reverted |
||
Line 1: | Line 1: | ||
/* ===== Final Fix: |
/* ===== Final Fix: Make logo touch the top in Vector 2022 ===== */ |
||
/* Remove |
/* Remove all padding and margins in header */ |
||
.vector-header |
.vector-header, |
||
⚫ | |||
⚫ | |||
.vector-sticky-header, |
|||
⚫ | |||
.vector-header-start, |
|||
⚫ | |||
.vector-header-logo, |
|||
⚫ | |||
.mw-logo-icon { |
|||
} |
|||
⚫ | |||
⚫ | |||
⚫ | |||
⚫ | |||
padding-bottom: 0 !important; |
|||
height: auto !important; |
height: auto !important; |
||
min-height: 0 !important; |
min-height: 0 !important; |
||
} |
} |
||
/* |
/* Remove site title text */ |
||
.vector-header |
.vector-header .vector-header-start .mw-logo-wordmark, |
||
⚫ | |||
margin: 0 !important; |
|||
display: none !important; |
|||
height: auto !important; |
|||
display: flex !important; |
|||
⚫ | |||
justify-content: center !important; |
|||
} |
} |
||
/* |
/* Make logo touch the top and center it */ |
||
.vector-header-logo, .mw-logo-icon { |
.vector-header-logo, .mw-logo-icon { |
||
width: 120px !important; /* Adjust as needed */ |
width: 120px !important; /* Adjust width as needed */ |
||
background-size: contain !important; |
background-size: contain !important; |
||
background-repeat: no-repeat !important; |
background-repeat: no-repeat !important; |
||
background-position: |
background-position: top center !important; /* KEY: align logo to the top */ |
||
⚫ | |||
⚫ | |||
⚫ | |||
} |
} |
||
/* Ensure logo container aligns logo to top */ |
|||
.vector-header-start { |
|||
/* ===== Hide site title in Vector 2022 ===== */ |
|||
⚫ | |||
.vector-header .vector-header-start .mw-logo-wordmark, |
|||
align-items: flex-start !important; /* KEY: stick to top */ |
|||
⚫ | |||
justify-content: center !important; |
|||
} |
} |
Revision as of 12:17, 13 July 2025
/* ===== Final Fix: Make logo touch the top in Vector 2022 ===== */
/* Remove all padding and margins in header */
.vector-header,
.vector-header-container,
.vector-sticky-header,
.vector-header-start,
.vector-header-logo,
.mw-logo-icon {
padding: 0 !important;
margin: 0 !important;
height: auto !important;
min-height: 0 !important;
}
/* Remove site title text */
.vector-header .vector-header-start .mw-logo-wordmark,
.vector-header .vector-header-start .vector-header-wiki-name {
display: none !important;
}
/* Make logo touch the top and center it */
.vector-header-logo, .mw-logo-icon {
width: 120px !important; /* Adjust width as needed */
background-size: contain !important;
background-repeat: no-repeat !important;
background-position: top center !important; /* KEY: align logo to the top */
display: flex !important;
align-items: flex-start !important; /* KEY: stick to top */
justify-content: center !important;
}
/* Ensure logo container aligns logo to top */
.vector-header-start {
display: flex !important;
align-items: flex-start !important; /* KEY: stick to top */
justify-content: center !important;
}