MediaWiki:Common.css: Difference between revisions

From Fate/Starry Night Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 33: Line 33:
     opacity: 0.4;
     opacity: 0.4;
}
}
.portal .collapsed .vector-menu-heading a {
.portal .collapsed .vector-menu-heading {
     color: #4d4d4d !important;
     color: #4d4d4d !important;
}
}
/* Hover effect */
/* Hover effect */
.portal .collapsed .vector-menu-heading a:hover {
.portal .collapsed .vector-menu-heading:hover {
     border-bottom: none !important;
     border-bottom: none !important;
}
}

Revision as of 23:19, 6 February 2026

/* CSS placed here will be applied to all skins */
/* 
  Logo
*/
#p-logo a { background-size: cover; }
.mw-wiki-logo { margin-top: 10px; }

/* 
  Sidebar
*/
/* Remove defaults */
.portal .vector-menu-heading {
    background-image: none !important;
    padding: none !important;
}
#p-tb .vector-menu-content { margin: 0 0 0 0.5em !important; }
/* Category underline */
.portal .vector-menu-heading {
    padding: 0.2em 0 !important;
    margin: 0.5em 0.6em 0 0.66666667em !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.35) !important;
}
/* Category - default */
.portal .vector-menu-heading::after {
    content: "▾";
    margin-left: auto;
    opacity: 0.6;
    transition: transform 0.2s ease, opacity 0.2s ease;
}
/* Category - collapsed */
.portal .collapsed .vector-menu-heading::after {
    transform: rotate(-90deg);
    opacity: 0.4;
}
.portal .collapsed .vector-menu-heading {
    color: #4d4d4d !important;
}
/* Hover effect */
.portal .collapsed .vector-menu-heading:hover {
    border-bottom: none !important;
}
.portal .vector-menu-heading:hover::after {
    opacity: 0.85;
}