Jump to content

MediaWiki:Common.css: Difference between revisions

From stereotool.info
No edit summary
Tag: Manual revert
No edit summary
Line 7: Line 7:
     color: black !important;
     color: black !important;
     background-color: white !important;
     background-color: white !important;
}
.collapsible-header {
    cursor: pointer;
    font-weight: bold;
    padding: 8px;
    background-color: #e6e6e6;
    border-radius: 5px;
    margin-bottom: 5px;
}
.collapsible-header::before {
    content: "▶ ";
}
.collapsible-header.active::before {
    content: "▼ ";
}
.collapsible-content {
    display: none;
    padding-left: 15px;
}
}

Revision as of 00:12, 4 February 2025

/* CSS placed here will be applied to all skins */
img {
    filter: none !important;
}
/* Ensure text in ConfirmAccount fields is visible */
textarea {
    color: black !important;
    background-color: white !important;
}
.collapsible-header {
    cursor: pointer;
    font-weight: bold;
    padding: 8px;
    background-color: #e6e6e6;
    border-radius: 5px;
    margin-bottom: 5px;
}
.collapsible-header::before {
    content: "▶ ";
}
.collapsible-header.active::before {
    content: "▼ ";
}
.collapsible-content {
    display: none;
    padding-left: 15px;
}