From ProventusNova DeveloperWiki
No edit summary
Tag: Reverted
No edit summary
 
(40 intermediate revisions by the same user not shown)
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */

/* Hide "Page tools" */
/* Hide "Page tools" */
#p-cactions { display: none; }
#p-cactions { display: none !important; }


#catlinks{
/* Hide "More" section */
#p-tb { display: none; }
display: none !important;
}


/* Hide "Categories" */
/* Hide "View source" for non-logged-in users */
.skin-vector #ca-viewsource {
#catlinks { display: none; }
display: none !important;

}
/* Remove extra space under sections */
.vector-menu-content { padding-bottom: 5px; }


#ca-talk {
/* Add a cleaner background and border */
display: none !important;
.vector-menu {
background-color: #f8f9fa;
border-radius: 5px;
padding: 8px;
}
}


/* Adjust header font and spacing */
/* Expand the main content area */
.skin-timeless #mw-content {
.vector-menu-heading {
font-weight: bold;
margin-left: 0 !important;
font-size: 14px;
margin-right: 0 !important;
color: #333;
}
}

Latest revision as of 01:38, 9 April 2025

/* CSS placed here will be applied to all skins */

/* Hide "Page tools" */
#p-cactions { display: none !important; }

#catlinks{
    display: none !important;
}

/* Hide "View source" for non-logged-in users */
.skin-vector #ca-viewsource {
    display: none !important;
}

#ca-talk {
    display: none !important;
}

/* Expand the main content area */
.skin-timeless #mw-content {
    margin-left: 0 !important;
    margin-right: 0 !important;
}