mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-12-11 23:46:53 +00:00
e50ef3841a
Add a mw.echo.ui.FooterNoticeWidget that includes a link to a feedback survey, and three config variables: * $wgEchoShowFooterNotice: Enable this feature per wiki (Defaults to false) * $wgEchoFooterNoticeURL: The URL for the survey (Defaults to '') * User preference 'echo-dismiss-feedback-alert': determines whether the user permanently dismissed the feedback alert. (Defaults to false) Bug: T128937 Change-Id: I918a70beaba7b173e764519fe4fe0f780b61082d
25 lines
282 B
Plaintext
25 lines
282 B
Plaintext
@import '../../echo.variables';
|
|
|
|
.mw-echo-ui-footerNoticeWidget {
|
|
padding: 0.5em;
|
|
border-bottom: 1px solid #DDDDDD;
|
|
|
|
&-row {
|
|
display: table-row;
|
|
}
|
|
|
|
&-dismiss,
|
|
&-info,
|
|
&-label {
|
|
display: table-cell;
|
|
}
|
|
|
|
&-label {
|
|
width: 100%;
|
|
}
|
|
|
|
&-icon {
|
|
padding-right: 0.5em;
|
|
}
|
|
}
|