Jump to content

MediaWiki:Vector-2022.css: Difference between revisions

From Transight Wiki
No edit summary
No edit summary
Line 1: Line 1:
/* 🔧 FORCE Logo Resizing in Vector 2022 */
/* Break out of logo container jail */
.vector-header-logo {
.vector-header-logo {
     width: 220px !important;
    flex: 0 0 auto !important;
    max-width: none !important;
     width: auto !important;
     height: auto !important;
     height: auto !important;
     background-size: contain !important;
     padding: 0 !important;
    margin: 0 !important;
}
}


/* Resize actual logo image */
.vector-header-logo img {
.vector-header-logo img {
     max-height: 70px !important;
     max-height: 60px !important;
     width: auto !important;
     width: auto !important;
    height: auto !important;
    display: block !important;
}
}


/* Optional: hide site title if logo already includes it */
/* Optional: Hide site title if you just want the image */
.vector-header-title {
.vector-header-title {
     display: none !important;
     display: none !important;
}
}

Revision as of 09:42, 18 June 2025

/* Break out of logo container jail */
.vector-header-logo {
    flex: 0 0 auto !important;
    max-width: none !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Resize actual logo image */
.vector-header-logo img {
    max-height: 60px !important;
    width: auto !important;
    height: auto !important;
    display: block !important;
}

/* Optional: Hide site title if you just want the image */
.vector-header-title {
    display: none !important;
}