Jump to content

MediaWiki:Vector-2022.css: Difference between revisions

From TheOpenRoad Support
No edit summary
No edit summary
 
Line 1: Line 1:
/* Hide the site name text next to the logo image in Vector 2022 */
.vector-header .mw-logo-wordmark a,
 
.vector-header .mw-logo-wordmark a:visited {
.vector-header .mw-logo-text {
     color: inherit !important;         /* Inherit parent text color */
    display: none !important;
     text-decoration: none !important; /* Remove underline */
}
     filter: none !important;           /* Prevent browser darkening on visited */
 
     opacity: 1 !important;             /* Ensure full visibility */
.vector-header .mw-logo-container > a:nth-child(2) {
     display: none !important;
}
 
.mw-logo-wordmark {
    display: none !important;
}
 
/* Upscale the Vector 2022 logo image */
 
.vector-header .mw-logo-icon {
     max-height: 80px;   /* Increase height */
     max-width: 300px;   /* Increase width */
     background-size: contain !important; /* Ensure it scales properly */
    background-repeat: no-repeat !important;
}
}

Latest revision as of 19:39, 19 June 2025

.vector-header .mw-logo-wordmark a,
.vector-header .mw-logo-wordmark a:visited {
    color: inherit !important;         /* Inherit parent text color */
    text-decoration: none !important;  /* Remove underline */
    filter: none !important;           /* Prevent browser darkening on visited */
    opacity: 1 !important;             /* Ensure full visibility */
}