mediawiki-extensions-Echo/modules/styles/mw.echo.ui.MenuItemWidget.less
Volker E 6d2e560c1e Introduce stylelint
Introducing stylelint with configuration rules compliant to
Wikimedia CSS Coding Standards 'stylelint-config-wikimedia', nullifying
some for now and making majority pass.

Change-Id: I2c4acee41c9b56d9b00e2a2c5b7ab0ab5de454ce
2016-10-04 18:15:02 -07:00

91 lines
1.9 KiB
Plaintext

@import '../echo.variables';
@import '../echo.mixins';
.mw-echo-ui-menuItemWidget {
&-icon {
display: inline-block;
// We have to override oojs-ui's width/height, which uses
// a very specific selector
width: 1.5em !important;
height: 1.5em !important;
min-width: 1.5em !important;
min-height: 1.5em !important;
position: absolute;
top: 0;
}
&-content {
display: inline-block;
margin-left: 1.5em + 0.5em; // Icon width + 0.5em spacing
// We have to override oojs-ui's color, which uses
// a very specific selector
font-weight: normal !important;
color: #333 !important;
// Set max-width so buttons are truncated
max-width: 15em;
&-description {
color: #666 !important;
}
}
&-prioritized {
.mw-echo-ui-mixin-hover-opacity();
display: inline-block;
padding: 0;
}
&-dynamic-action {
padding: 1.5em;
&:hover {
background: #fff;
}
.mw-echo-ui-menuItemWidget-content span.oo-ui-labelElement-label {
white-space: normal;
overflow: visible;
}
.mw-echo-ui-menuItemWidget-content {
&-description {
padding-top: 1em;
}
}
}
// Correct for when inside the popup menu
.mw-echo-ui-actionMenuPopupWidget-menu & {
display: block;
padding: 0.7em;
&:hover {
background: #eee;
}
&-icon {
// The icon should be 15px, which is 1.1em. However,
// ooui icons are surrounded by whitespace. In this case,
// the whitespace is about 6px out of the original 24px
// so the non-whitespace dimensions are 3/4 of the total.
// So to compensate, the new size should be 1.1em*4/3 = 1.4em
width: 1.4em !important;
height: 1.4em !important;
// Take into account the padding and subtract half of
// the whitespace adjustment of the icon
top: 0.7em - 0.3em / 2;
}
&-content {
margin-left: 1.4em + 0.7em; // Icon width + 0.7em spacing
font-weight: bold !important;
span.oo-ui-labelElement-label {
line-height: 1em;
}
}
}
}