mediawiki-extensions-Echo/modules/nojs/mw.echo.badge.less
Bartosz Dziewoński 945fccf009 Make the invisible text in badges really invisible
Bug: T161302
Change-Id: I5c7a5bcb7a096b69c28651c6fe1e4017654997ad
2017-03-28 18:26:26 +02:00

93 lines
1.8 KiB
Plaintext

@import '../echo.variables';
@import 'mediawiki.mixins';
/* stylelint-disable no-descending-specificity */
/* We have to include the #pt-notifications selector due to monobook */
.mw-echo-notifications-badge {
#pt-notifications-alert &,
#pt-notifications-notice & {
position: relative;
display: block;
width: 24px;
height: 24px;
// Hide the text, but keep accessible for screen-readers
// Later we put the icons back onscreen with an opposite offset
top: -@badge-offscreen-offset - 5px;
cursor: pointer;
text-decoration: none;
&:hover,
&:active,
&:focus {
outline: 0;
-moz-outline-style: 0;
}
&-dimmed {
opacity: 0.4;
}
// Background icon
&:before {
position: absolute;
display: inline-block;
cursor: pointer;
opacity: 0.8;
content: '';
background-repeat: no-repeat;
// Bring it back onscreen
top: @badge-offscreen-offset;
left: 0;
width: 100%;
height: 100%;
}
// Counter
&:after {
position: absolute;
display: inline-block;
cursor: pointer;
// Bring it back onscreen
top: @badge-offscreen-offset + 9px;
left: 55%;
font-size: 0.9em;
font-weight: bold;
padding: 0 0.3em;
border: 1px solid #fff;
border-radius: 2px;
background-color: @badge-counter-background-seen;
content: attr( data-counter-text );
color: #fff;
}
&.mw-echo-notifications-badge-long-label {
&:after {
left: 35%;
}
}
&.mw-echo-notifications-badge-all-read {
opacity: 0.625;
&:after {
visibility: hidden;
}
}
}
#pt-notifications-alert & {
&:before {
/* @embed */
background-image: url( ../icons/bell.svg );
}
}
#pt-notifications-notice & {
&:before {
/* @embed */
background-image: url( ../icons/tray.svg );
}
}
}
/* stylelint-enable no-descending-specificity */