mediawiki-skins-MinervaNeue/resources/skins.minerva.scripts/styles.less
Steph Toyofuku 4b3abcb1eb [VISUAL CHANGE] Update last modified bar to have an accessible color contrast
The current white text on a green background is not an accessible level
of color contrast.  We were instead recommended to use
@background-color-progressive, so let's do that

In addition, remove the previous definition of
@background-color-last-modified-bar-active as it's no longer being used

Visual change for pages on mobile that have been updated recently

Bug: T358736
Change-Id: If5b97b785e95df75645be62847cef396f6be68b6
2024-03-15 22:28:48 +00:00

73 lines
1.5 KiB
Plaintext

@import '../../minerva.less/minerva.variables.less';
@import '../../minerva.less/minerva.mixins.less';
@import 'mediawiki.mixins.less';
@import 'toc.less';
@import 'watchStar.less';
@import 'page-issues/styles.less';
@import 'Toolbar.less';
.minerva-icon--download {
.cdx-mixin-css-icon( @cdx-icon-download, #54595d );
}
.minerva-icon--listBullet {
.cdx-mixin-css-icon( @cdx-icon-list-bullet, #54595d );
}
.mw-mf-page-center__mask {
position: absolute;
top: 0;
left: 0;
right: 0;
opacity: 0;
bottom: 0;
background: @opaque;
z-index: @z-index-above-content;
// don't use display: none because it's not animatable
visibility: hidden;
transition: opacity @transition-duration-base ease-in-out;
}
.navigation-enabled {
.mw-mf-page-center__mask {
visibility: visible;
opacity: 0.5;
}
}
// Last modified bar styles
.last-modified-bar.active {
background-color: @background-color-progressive;
color: var( --color-inverted );
.last-modified-text-accent,
a {
color: var( --color-inverted );
}
.minerva-icon {
background-color: var( --color-inverted );
}
}
// Used by last modified bar and in MobileFrontend (i.e. MobileSpecialPageFeed.php, ImageCarousel.js)
.truncated-text {
.text-overflow( @visible: false );
}
@keyframes fadeInImage {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
// When the image has loaded transition background color and image opacity
// for a fade-in effect
img.image-lazy-loaded {
animation: fadeInImage 300ms ease-in;
}