MediaWiki:Common.css: Difference between revisions

From Drug Information
No edit summary
Tag: Reverted
Replaced content with "CSS placed here will be applied to all skins: #footer-info-lastmod { display: none !important; }"
 
Line 2: Line 2:
#footer-info-lastmod {
#footer-info-lastmod {
     display: none !important;
     display: none !important;
}
/* Dark Mode: Global Backgrounds */
body, #mw-page-base, #mw-content-base, #content, #mw-head, #mw-panel, #p-logo, .vector-menu-content {
    background-color: #121212 !important;
    color: #e0e0e0 !important;
}
/* Dark Mode: Content Area */
#content, .mw-body, .mw-body-content {
    background-color: #121212 !important;
    color: #e0e0e0 !important;
}
/* Dark Mode: Headers and Text */
h1, h2, h3, h4, h5, h6, .mw-body-content p, .mw-body-content li {
    color: #ffffff !important;
}
/* Dark Mode: Tables */
table, .wikitable, .wikitable th, .wikitable td {
    background-color: #1e1e1e !important;
    color: #e0e0e0 !important;
    border-color: #333333 !important;
}
/* Dark Mode: Links */
a { color: #81d4fa !important; }
a:visited { color: #ce93d8 !important; }
/* Dark Mode: Inputs and Textareas */
textarea, input, select, button {
    background-color: #2c2c2c !important;
    color: #ffffff !important;
    border: 1px solid #444444 !important;
}
/* Dark Mode: Sidebar and Toolboxes */
#mw-panel, #left-navigation, #right-navigation {
    background-color: #1a1a1a !important;
}
}

Latest revision as of 03:06, 8 March 2026

/* CSS placed here will be applied to all skins */
#footer-info-lastmod {
    display: none !important;
}