Jump to content

MediaWiki:Vector.css: Difference between revisions

From TnPedia
Created page with "All CSS here will be loaded for users of the Vector skin: Esconde a aba "Discussion": .skin-vector .mw-portlet-tabs li#ca-talk, .skin-minerva .minerva-talk-icon { display: none !important; } Esconde a aba "View history": .skin-vector .mw-portlet-tabs li#ca-history, .skin-minerva .minerva-history-icon { display: none !important; } Esconde o item "Tools" no sidebar: .skin-vector #p-tb, .skin-minerva .minerva-action-tools { display: none !..."
 
No edit summary
 
Line 1: Line 1:
/* All CSS here will be loaded for users of the Vector skin */
/* All CSS here will be loaded for users of the Vector skin */
 
/* Esconde a aba "Discussion" */
/* Esconde "Discussion" */
.skin-vector .mw-portlet-tabs li#ca-talk,
.vector-menu-tabs li[title*="Discussion"] {
.skin-minerva .minerva-talk-icon {
     display: none !important;
     display: none !important;
}
}


/* Esconde a aba "View history" */
/* Esconde "View history" */
.skin-vector .mw-portlet-tabs li#ca-history,
.vector-page-tools li:last-child {
.skin-minerva .minerva-history-icon {
     display: none !important;
     display: none !important;
}
}


/* Esconde o item "Tools" no sidebar */
/* Esconde "Tools" (barra lateral) */
.skin-vector #p-tb,
#p-tb,
.skin-minerva .minerva-action-tools {
.vector-sidebar-tools {
     display: none !important;
     display: none !important;
}
}


/* Esconde "Recent changes", "Random page" e "Help about MediaWiki" */
/* Esconde "Recent changes", "Random page", "Help" do menu principal */
#n-recentchanges,
.vector-toc #n-recentchanges,
#n-randompage,
.vector-toc #n-randompage,
#n-help {
.vector-toc #n-help {
     display: none !important;
     display: none !important;
}
}

Latest revision as of 15:09, 27 May 2025

/* All CSS here will be loaded for users of the Vector skin */
 
/* Esconde "Discussion" */
.vector-menu-tabs li[title*="Discussion"] {
    display: none !important;
}

/* Esconde "View history" */
.vector-page-tools li:last-child {
    display: none !important;
}

/* Esconde "Tools" (barra lateral) */
#p-tb,
.vector-sidebar-tools {
    display: none !important;
}

/* Esconde "Recent changes", "Random page", "Help" do menu principal */
.vector-toc #n-recentchanges,
.vector-toc #n-randompage,
.vector-toc #n-help {
    display: none !important;
}