MediaWiki:Timeless.css: Difference between revisions

From Access Tech Central
No edit summary
Tag: Reverted
No edit summary
Tag: Reverted
Line 45: Line 45:




/* 1. FORCE MASK ICONS TO WHITE - This targets the hidden Edit/Star/History icons */
/* 1. THE ICON FLARE - Forces all hidden icons to glow white */
.mw-ui-icon,  
.mw-ui-icon,  
.oo-ui-iconElement-icon,  
.oo-ui-iconElement-icon,  
[class^="mw-ui-icon-"],
.mw-editsection-visualeditor,
.mw-editsection-visualeditor,
[class^="mw-ui-icon-"],
#ca-watch a::before,  
#ca-watch a::before,  
#ca-unwatch a::before {
#ca-unwatch a::before,
     background-color: #ffffff !important; /* In Mask-Image, the color IS the background-color */
.indicator,
     -webkit-mask-repeat: no-repeat !important;
.vector-menu-content-list .mw-list-item a::before {
    mask-repeat: no-repeat !important;
     filter: invert(1) brightness(5) !important; /* Flips black to ultra-bright white */
    filter: brightness(2) !important;
     background-color: transparent !important;   /* Prevents the black box overlap */
     display: inline-block !important;
     display: inline-block !important;
     visibility: visible !important;
     visibility: visible !important;
    opacity: 1 !important;
}
}


/* 2. MAKE THEM BIGGER - Larger targets for easier navigation */
/* 2. SUPER-SIZE ICONS - Makes them much easier to find */
.mw-ui-icon,  
.mw-ui-icon,  
.oo-ui-iconElement-icon,
.oo-ui-iconElement-icon,
[class^="mw-ui-icon-"] {
[class^="mw-ui-icon-"] {
     width: 36px !important;
     width: 40px !important; /* Significant size increase */
     height: 36px !important;
     height: 40px !important;
     min-width: 36px !important;
     min-width: 40px !important;
     background-size: contain !important;
     background-size: contain !important;
}
}


/* 3. ENSURE LABELS ARE VISIBLE - Force text next to icons to stay white */
/* 3. FONT WEIGHT & CONTRAST - Global Bold */
#p-views li a,
* {
#p-cactions li a,
.oo-ui-labelElement-label {
    color: #ffffff !important;
     font-weight: bold !important;
     font-weight: bold !important;
     text-decoration: none !important;
}
 
/* 4. CONTENT AREA - Keeps your preferred dark gray */
#content {
     background-color: #111111 !important;
}
}

Revision as of 08:03, 20 February 2026

/* 1. UNIVERSAL FORCE - Targets every single element regardless of ID */
*, 
*::before, 
*::after {
    background-color: #111111 !important;
    background-image: none !important;
    color: #ffffff !important;
    border-color: #99c4c4 !important;
}

/* 2. RE-ESTABLISH YOUR PREFERENCES - Prevents the universal rule from breaking your gray search and content boxes */
#content {
    background-color: #333333 !important;
}

#searchInput {
    background-color: #333333 !important;
}

/* 3. Keep your links and headers readable */
a { color: #00ffff !important; }
a:visited { color: #FF00FF !important; }
h1, h2, h3, h4 {
font-weight: bold;
color: #fff698 !important; }


/* 2. BIG FONT & SPACING - Global Text Increase */
html, body, p, div, li, span, a {
    font-size: 1.1rem !important; /* Larger text for easier reading */
    line-height: 1.6 !important;   /* Better spacing for screen readers */
}


svg, 
.mw-ui-icon, 
.oo-ui-iconElement-icon, {
    filter: invert(1) brightness(2) !important;
    background-color: transparent !important; /* Prevents a black box around the white icon */
}






/* 1. THE ICON FLARE - Forces all hidden icons to glow white */
.mw-ui-icon, 
.oo-ui-iconElement-icon, 
[class^="mw-ui-icon-"],
.mw-editsection-visualeditor,
#ca-watch a::before, 
#ca-unwatch a::before,
.indicator,
.vector-menu-content-list .mw-list-item a::before {
    filter: invert(1) brightness(5) !important; /* Flips black to ultra-bright white */
    background-color: transparent !important;   /* Prevents the black box overlap */
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* 2. SUPER-SIZE ICONS - Makes them much easier to find */
.mw-ui-icon, 
.oo-ui-iconElement-icon,
[class^="mw-ui-icon-"] {
    width: 40px !important;  /* Significant size increase */
    height: 40px !important;
    min-width: 40px !important;
    background-size: contain !important;
}

/* 3. FONT WEIGHT & CONTRAST - Global Bold */
* {
    font-weight: bold !important;
}

/* 4. CONTENT AREA - Keeps your preferred dark gray */
#content {
    background-color: #111111 !important;
}