MediaWiki:Vector.css: Difference between revisions
Appearance
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 | /* Esconde "Discussion" */ | ||
. | .vector-menu-tabs li[title*="Discussion"] { | ||
display: none !important; | display: none !important; | ||
} | } | ||
/* Esconde | /* Esconde "View history" */ | ||
. | .vector-page-tools li:last-child { | ||
display: none !important; | display: none !important; | ||
} | } | ||
/* Esconde | /* Esconde "Tools" (barra lateral) */ | ||
#p-tb, | |||
. | .vector-sidebar-tools { | ||
display: none !important; | display: none !important; | ||
} | } | ||
/* Esconde "Recent changes", "Random page" | /* 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;
}