mediawiki-extensions-Echo/modules/styles/mw.echo.ui.ToggleReadCircleButtonWidget.less
Volker E 135f96a13a Use accessible colors on read status marker
Using accessible colors on read status marker notifications.

Bug: T139167
Change-Id: I2dc35d02abe2fccaf1f9d13d7672b2e432e7d1f0
2016-07-01 21:56:08 +02:00

32 lines
570 B
Plaintext

@import '../echo.variables';
.mw-echo-ui-toggleReadCircleButtonWidget {
&-circle {
border-radius: 50%;
width: @bundle-group-padding;
height: @bundle-group-padding;
margin: @bundle-group-padding;
box-sizing: border-box;
// Mark as read
background-color: #36c;
border: 0;
// Mark as unread
&-unread {
background-color: #eaecf0;
border: 1px solid #71777d;
}
}
&:hover .mw-echo-ui-toggleReadCircleButtonWidget-circle {
// Mark as read
background-color: #99b2e5;
// Mark as unread
&-unread {
background-color: #c8ccd1;
}
}
}