MediaWiki:Common.css: Difference between revisions

From Wikipedia
Jump to navigation Jump to search
Created page with "CSS placed here will be applied to all skins: Hide Tools menu: #p-tb { display: none !important; }"
 
No edit summary
Line 3: Line 3:
#p-tb {
#p-tb {
     display: none !important;
     display: none !important;
}
.mw-page-title-main {
    display: inline-flex;
    align-items: center;
}
.mw-page-title-main::after {
    content: "";
    width: 18px;
    height: 18px;
    margin-left: 6px;
    display: inline-block;
    background: url("/images/icons8-verified-30.png") center center no-repeat;
    background-size: 18px 18px;
}
}

Revision as of 02:45, 20 July 2026

/* CSS placed here will be applied to all skins */
/* Hide Tools menu */
#p-tb {
    display: none !important;
}
.mw-page-title-main {
    display: inline-flex;
    align-items: center;
}

.mw-page-title-main::after {
    content: "";
    width: 18px;
    height: 18px;
    margin-left: 6px;
    display: inline-block;
    background: url("/images/icons8-verified-30.png") center center no-repeat;
    background-size: 18px 18px;
}