mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-12 09:26:05 +00:00
6d2e560c1e
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
40 lines
521 B
Plaintext
40 lines
521 B
Plaintext
@import '../echo.variables';
|
|
@import '../echo.mixins';
|
|
|
|
.mw-echo-ui-footerNoticeWidget {
|
|
padding: 0.5em;
|
|
border-bottom: 1px solid #ddd;
|
|
white-space: normal;
|
|
line-height: 16px;
|
|
|
|
&-row {
|
|
display: table-row;
|
|
}
|
|
|
|
&-dismiss,
|
|
&-info,
|
|
&-label {
|
|
display: table-cell;
|
|
}
|
|
|
|
&-label {
|
|
width: 100%;
|
|
}
|
|
|
|
&-icon {
|
|
padding-right: 0.5em;
|
|
}
|
|
|
|
&-dismiss,
|
|
&-info {
|
|
.mw-echo-ui-mixin-hover-opacity();
|
|
|
|
vertical-align: top;
|
|
|
|
.oo-ui-iconElement-icon {
|
|
width: 1.3em !important;
|
|
height: 1.3em !important;
|
|
}
|
|
}
|
|
}
|