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; }"
 
(One intermediate revision by the same user not shown)
Line 2: Line 2:
#footer-info-lastmod {
#footer-info-lastmod {
     display: none !important;
     display: none !important;
}
/* Dark Mode Setup for MediaWiki */
body, #content, #mw-content-text {
    background-color: #121212 !important;
    color: #e0e0e0 !important;
}
/* Ensure headings are readable */
h1, h2, h3, h4, h5, h6 {
    color: #ffffff !important;
}
/* Adjust links for dark mode */
a {
    color: #81d4fa !important;
}
a:visited {
    color: #ce93d8 !important;
}
/* Ensure tables are readable in dark mode */
table, th, td {
    background-color: #1e1e1e !important;
    color: #e0e0e0 !important;
    border-color: #333333 !important;
}
/* Input fields and buttons */
input, textarea, select, button {
    background-color: #2c2c2c !important;
    color: #e0e0e0 !important;
    border: 1px solid #444444 !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;
}