mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-28 17:50:39 +00:00
48dc79be11
Also use framed buttons (which these sort of are) as they have hover styles. Bug: T112188 Change-Id: I750a18a90c655cc7916e050b5e300300a4437b69
93 lines
2.2 KiB
Plaintext
93 lines
2.2 KiB
Plaintext
@import '../../echo.mixins';
|
|
@import '../../echo.variables';
|
|
|
|
.mw-echo-ui-notificationBadgeButtonPopupWidget {
|
|
&-alert {
|
|
// Must be strong to override OOUI's button background color definition
|
|
&.oo-ui-flaggedElement-unseen > .oo-ui-buttonElement-button {
|
|
background-color: @badge-background-unseen-alert;
|
|
}
|
|
}
|
|
&-message {
|
|
margin-left: @badge-distance-adjustment;
|
|
// Must be strong to override OOUI's button background color definition
|
|
&.oo-ui-flaggedElement-unseen > .oo-ui-buttonElement-button {
|
|
background-color: @badge-background-unseen-message;
|
|
}
|
|
}
|
|
|
|
.oo-ui-popupWidget-footer {
|
|
border-top: 1px solid #DDDDDD;
|
|
width: 100%;
|
|
|
|
.oo-ui-buttonElement {
|
|
display: table-cell;
|
|
white-space: normal;
|
|
font-weight: bold;
|
|
width: @notification-popup-width / 2;
|
|
box-sizing: border-box;
|
|
|
|
&:last-child {
|
|
border-left: 1px solid #DDDDDD;
|
|
}
|
|
|
|
> .oo-ui-buttonElement-button {
|
|
display: block;
|
|
line-height: 4em;
|
|
text-align: left;
|
|
padding: 0 1em 0 2em;
|
|
margin: 0;
|
|
border: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
// Badge
|
|
> .oo-ui-buttonElement-button {
|
|
.mixin-notifications-badge();
|
|
padding: @badge-padding;
|
|
|
|
.oo-ui-labelElement-label {
|
|
// We must use !important here because ooui's button's label rules
|
|
// are extremely strong and cannot be overridden
|
|
color: @badge-text-color-idle !important;
|
|
}
|
|
.oo-ui-iconElement-icon {
|
|
// We must use !important here because ooui's button's icon rules
|
|
// are extremely strong and cannot be overridden
|
|
width: @badge-icon-size !important;
|
|
height: @badge-icon-size !important;
|
|
margin-top: -0.1em;
|
|
&.oo-ui-icon-speechBubble {
|
|
margin-top: -0.14em;
|
|
padding-left: 0.1em;
|
|
}
|
|
}
|
|
}
|
|
|
|
.oo-ui-popupWidget {
|
|
// #p-personal li has a font-size of 0.75em, but we want the
|
|
// font size here to be exactly 0.875em, so we must override
|
|
// the parent em sizing by dividing.
|
|
font-size: 0.875em / 0.75em;
|
|
}
|
|
|
|
.oo-ui-popupWidget-head {
|
|
> .oo-ui-iconWidget {
|
|
float: left;
|
|
margin: 0.7em 0 1em 1em;
|
|
}
|
|
|
|
> .oo-ui-labelElement-label {
|
|
font-size: 1.2em;
|
|
padding: 0.3em;
|
|
margin-left: 0;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.mw-echo-ui-notificationsWidget-markAllReadButton {
|
|
margin: 1em;
|
|
}
|
|
}
|
|
}
|