MediaWiki:Common.css: Difference between revisions
(Created page with "→CSS placed here will be applied to all skins: #p-views #ca-css, #p-views #ca-content { order: 100; } #p-views #ca-css > a, #p-views #ca-content > a { →background-color: var(--color-primary);: background-color: #ff10c3; color: #fff; } #p-views #ca-css > a::after, #p-views #ca-content > a::after { margin-right: 0; width: 0; opacity: 0; }") |
No edit summary |
||
Line 18: | Line 18: | ||
width: 0; | width: 0; | ||
opacity: 0; | opacity: 0; | ||
} | |||
.vector-menu-content-list { | |||
display: none; | |||
} | |||
} | } |
Revision as of 12:47, 5 April 2023
/* CSS placed here will be applied to all skins */
#p-views #ca-css,
#p-views #ca-content {
order: 100;
}
#p-views #ca-css > a,
#p-views #ca-content > a {
/*background-color: var(--color-primary);*/
background-color: #ff10c3;
color: #fff;
}
#p-views #ca-css > a::after,
#p-views #ca-content > a::after {
margin-right: 0;
width: 0;
opacity: 0;
}
.vector-menu-content-list {
display: none;
}
}