Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

MediaWiki:Common.css: Difference between revisions

MediaWiki interface page
No edit summary
Tag: Reverted
No edit summary
Tag: Manual revert
Line 2: Line 2:


/* Text elements in white */
/* Text elements in white */
body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, a, span, blockquote, pre, code, th, td, caption, label, input[type="text"], input[type="password"], input[type="email"], input[type="number"], textarea, select, button, .option, .mw-parser-output {
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
a,
span,
blockquote,
pre,
code,
th,
td,
caption,
label,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="number"],
textarea,
select,
button,
.option,
.mw-parser-output {
     color: #ffffff !important;
     color: #ffffff !important;
}
}
Line 12: Line 40:


/* Content background */
/* Content background */
#content, #content #bodyContent, #content #mw-content-text, #content #mw-indicator-mw-helplink, #content #mw-panel, #content #footer, #content #footer #footer-info, #content #footer #footer-places, #content #footer #footer-icons, #content #footer #footer-copyright {
#content,
#content #bodyContent,
#content #mw-content-text,
#content #mw-indicator-mw-helplink,
#content #mw-panel,
#content #footer,
#content #footer #footer-info,
#content #footer #footer-places,
#content #footer #footer-icons,
#content #footer #footer-copyright {
     background-color: #1f2024 !important;
     background-color: #1f2024 !important;
}
}


/* Links */
/* Links */
a, a:visited {
a,
a:visited {
     color: #ffffff !important;
     color: #ffffff !important;
}
}
Line 43: Line 81:


/* mw-code and mw-css background */
/* mw-code and mw-css background */
.mw-code, .mw-css {
.mw-code,
.mw-css {
     background-color: #131416 !important;
     background-color: #131416 !important;
}
}


/* mw-normal-catlinks background */
/* mw-normal-catlinks background */
.mw-normal-catlinks, .toc, .toccolours {
.mw-normal-catlinks,
.toc,
.toccolours {
     background-color: #27292d !important;
     background-color: #27292d !important;
     padding: 10px; /* Adjust padding as needed */
     padding: 10px; /* Adjust padding as needed */
Line 54: Line 95:


/* Tabs */
/* Tabs */
.vector-menu-tabs-legacy a, .vector-menu-tabs-legacy .selected {
.vector-menu-tabs-legacy a,
.vector-menu-tabs-legacy .selected {
     background-color: #1f2024 !important; /* Background color */
     background-color: #1f2024 !important; /* Background color */
     color: #ffffff !important; /* Text color */
     color: #ffffff !important; /* Text color */
Line 70: Line 112:
/* Text input widget */
/* Text input widget */
.oo-ui-textInputWidget.oo-ui-widget-enabled .oo-ui-inputWidget-input {
.oo-ui-textInputWidget.oo-ui-widget-enabled .oo-ui-inputWidget-input {
     background-color: ##27292d !important; /* Keeps original background color */
     background-color: #27292d !important;
    color: #ffffff !important; /* Sets text color to white */
}
}


Line 86: Line 127:


/* Recent changes filters */
/* Recent changes filters */
.mw-rcfilters-ui-changesListWrapperWidget .mw-changeslist-legend, .mw-changeslist-legend.mw-specialpages-notes {
.mw-rcfilters-ui-changesListWrapperWidget .mw-changeslist-legend,
.mw-changeslist-legend.mw-specialpages-notes {
     background-color: #27292d !important;
     background-color: #27292d !important;
     color: #ffffff !important;
     color: #ffffff !important;
Line 92: Line 134:


/* Button hover effect */
/* Button hover effect */
.oo-ui-buttonElement-framed.oo-ui-widget-enabled > .oo-ui-buttonElement-button, .oo-ui-buttonElement-framed.oo-ui-widget-enabled > .oo-ui-buttonElement-button:hover {
.oo-ui-buttonElement-framed.oo-ui-widget-enabled > .oo-ui-buttonElement-button,
.oo-ui-buttonElement-framed.oo-ui-widget-enabled > .oo-ui-buttonElement-button:hover {
     background-color: #27292d !important;
     background-color: #27292d !important;
     color: #ffffff !important;
     color: #ffffff !important;
Line 98: Line 141:


/* Clippable popup body */
/* Clippable popup body */
.oo-ui-popupWidget-body.oo-ui-clippableElement-clippable, .oo-ui-popupWidget-body.oo-ui-clippableElement-clippable.oo-ui-clippableElement-clipped, .oo-ui-popupWidget-popup {
.oo-ui-popupWidget-body.oo-ui-clippableElement-clippable,
.oo-ui-popupWidget-body.oo-ui-clippableElement-clippable.oo-ui-clippableElement-clipped,
.oo-ui-popupWidget-popup {
     background-color: #1f2024 !important;
     background-color: #1f2024 !important;
}
}

Revision as of 15:41, 18 March 2024

/* CSS placed here will be applied to all skins */

/* Text elements in white */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
a,
span,
blockquote,
pre,
code,
th,
td,
caption,
label,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="number"],
textarea,
select,
button,
.option,
.mw-parser-output {
    color: #ffffff !important;
}

/* Page background */
body {
    background-color: #27292d !important;
}

/* Content background */
#content,
#content #bodyContent,
#content #mw-content-text,
#content #mw-indicator-mw-helplink,
#content #mw-panel,
#content #footer,
#content #footer #footer-info,
#content #footer #footer-places,
#content #footer #footer-icons,
#content #footer #footer-copyright {
    background-color: #1f2024 !important;
}

/* Links */
a,
a:visited {
    color: #ffffff !important;
}

/* Hover effect for links */
a:hover {
    color: #cccccc !important;
}

/* Hover effect for buttons */
button:hover {
    background-color: #444444 !important;
    color: #ffffff !important;
}

/* Border color */
.border {
    border-color: #ffffff !important;
}

/* Header background */
#mw-head {
    background-color: #27292d !important;
}

/* mw-code and mw-css background */
.mw-code,
.mw-css {
    background-color: #131416 !important;
}

/* mw-normal-catlinks background */
.mw-normal-catlinks,
.toc,
.toccolours {
    background-color: #27292d !important;
    padding: 10px; /* Adjust padding as needed */
}

/* Tabs */
.vector-menu-tabs-legacy a,
.vector-menu-tabs-legacy .selected {
    background-color: #1f2024 !important; /* Background color */
    color: #ffffff !important; /* Text color */
}

.vector-menu-tabs-legacy a:hover {
    background-color: #4b4e54 !important; /* Hover color */
}

/* Edit form */
.mw-editform .editOptions {
    background-color: #1f2024 !important;
}

/* Text input widget */
.oo-ui-textInputWidget.oo-ui-widget-enabled .oo-ui-inputWidget-input {
    background-color: #27292d !important;
}

/* Edit text box */
.mw-editform #wpTextbox1 {
    background-color: #1f2024 !important;
}

/* Dropdown menu items */
.vector-menu-dropdown .mw-list-item a:not(.vector-icon) {
    background-color: #1f2024 !important;
    color: #ffffff !important;
}

/* Recent changes filters */
.mw-rcfilters-ui-changesListWrapperWidget .mw-changeslist-legend,
.mw-changeslist-legend.mw-specialpages-notes {
    background-color: #27292d !important;
    color: #ffffff !important;
}

/* Button hover effect */
.oo-ui-buttonElement-framed.oo-ui-widget-enabled > .oo-ui-buttonElement-button,
.oo-ui-buttonElement-framed.oo-ui-widget-enabled > .oo-ui-buttonElement-button:hover {
    background-color: #27292d !important;
    color: #ffffff !important;
}

/* Clippable popup body */
.oo-ui-popupWidget-body.oo-ui-clippableElement-clippable,
.oo-ui-popupWidget-body.oo-ui-clippableElement-clippable.oo-ui-clippableElement-clipped,
.oo-ui-popupWidget-popup {
    background-color: #1f2024 !important;
}

/* Filter Tag Multiselect Widget handle */
.mw-rcfilters-ui-filterTagMultiselectWidget.oo-ui-widget-enabled .oo-ui-tagMultiselectWidget-handle {
    background-color: #1f2024 !important;
}

/* Filter Tag Multiselect Widget views select widget */
.mw-rcfilters-ui-filterTagMultiselectWidget-views-select-widget.oo-ui-widget {
    background-color: #1f2024 !important;
}

/* Popup widget */
.oo-ui-popupWidget-popup {
    background-color: #1f2024 !important;
}

/* Clippable popup body */
.oo-ui-popupWidget-body.oo-ui-clippableElement-clippable {
    background-color: #1f2024 !important;
}

/* Search profile tabs */
.mw-search-profile-tabs {
    background-color: #27292d !important;
    color: #ffffff !important;
}