MediaWiki:Common.css: Difference between revisions

From retromux
Jump to navigation Jump to search
Dread (talk | contribs)
Tag: Replaced
Dread (talk | contribs)
No edit summary
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */
/* Change tab background color */
.tabs-label {
    background-color: #3e2a67 !important; /* Dark purple */
    color: #ffca85 !important; /* Amber text */
    border: 1px solid #7157a3 !important; /* Mystic violet border */
    padding: 1px 6px;
    border-radius: 5px;
}
/* Change active tab color */
.tabs-label.current {
    background-color: #f28f38 !important; /* Warm gold for active tab */
    color: #1a0f2b !important; /* Dark blue text */
    font-weight: bold;
}
/* Change hover effect */
.tabs-label:hover {
    background-color: #7157a3 !important; /* Mystic violet on hover */
    color: #ffffff !important; /* White text */
}

Revision as of 21:32, 7 March 2025

/* CSS placed here will be applied to all skins */
/* Change tab background color */
.tabs-label {
    background-color: #3e2a67 !important; /* Dark purple */
    color: #ffca85 !important; /* Amber text */
    border: 1px solid #7157a3 !important; /* Mystic violet border */
    padding: 1px 6px;
    border-radius: 5px;
}

/* Change active tab color */
.tabs-label.current {
    background-color: #f28f38 !important; /* Warm gold for active tab */
    color: #1a0f2b !important; /* Dark blue text */
    font-weight: bold;
}

/* Change hover effect */
.tabs-label:hover {
    background-color: #7157a3 !important; /* Mystic violet on hover */
    color: #ffffff !important; /* White text */
}