mediawiki-extensions-Echo/modules/nojs/mw.echo.badge.less
Siebrand Mazeland 33126b69aa Update formatting
In preparation of Code Sniffer based updates.

Change-Id: Id5d43332b44a37665d57dc24ef8c432bc65b2f6a
2015-10-03 23:28:54 -04:00

69 lines
1.8 KiB
Plaintext

@import '../echo.variables';
/* We have to include the #pt-notifications selector due to monobook */
.mw-echo-notifications-badge {
#pt-notifications-alert &,
#pt-notifications-message & {
border-radius: 0.2em;
background-color: #d2d2d2;
font-size: 1.125em;
font-weight: bold;
color: white;
cursor: pointer;
text-decoration: none;
margin-top: -0.2em;
display: inline-block;
padding: @badge-padding (@badge-padding + 0.25em) @badge-padding (@badge-padding + 0.25em + 1.1em);
height: 1.05em;
body.ltr & {
background-position: @badge-padding 0.1em;
}
body.rtl & {
// CSS sucks, we can't specify background-position-x from the right
// You can in Firefox with background-position-x: right 0.12em;
// but that's not supported in any other browsers
background-position: ~"calc(100% - @{badge-padding}) 0.1em";
}
background-size: @badge-icon-size;
background-repeat: no-repeat;
&:hover,
&:active,
&:focus {
background-color: #c2c2c2;
outline: none;
-moz-outline-style: none;
}
&-dimmed {
opacity: 0.4;
}
}
#pt-notifications-message & {
margin-left: @badge-distance-adjustment;
body.ltr & + .oo-ui-popupWidget {
// Only add a left adjustment for LTR pages.
// In LTR, the correction above moves the badge from the left
// which means we have to adjust the positioning of the anchor
// to be in the middle of the badge.
// In RTL, however, the above will be flipped to margin-right
// which doesn't affect the positioning of the anchor and hence
// doesn't require a correction.
left: (1em + @badge-distance-adjustment);
}
}
&.mw-echo-unseen-notifications {
#pt-notifications-alert & {
background-color: @badge-background-unseen-alert;
}
#pt-notifications-message & {
background-color: @badge-background-unseen-message;
}
}
}