2018-11-16 20:38:44 +00:00
|
|
|
@import 'mediawiki.mixins';
|
|
|
|
|
2015-02-08 16:24:29 +00:00
|
|
|
/**
|
|
|
|
* CSS for WikiEditor Dialogs jQuery plugin
|
|
|
|
*/
|
|
|
|
|
|
|
|
.wikiEditor-toolbar-dialog {
|
|
|
|
.ui-dialog-content {
|
2016-11-20 17:13:39 +00:00
|
|
|
/* stylelint-disable declaration-no-important */
|
2015-02-08 16:24:29 +00:00
|
|
|
fieldset {
|
2016-11-20 17:13:39 +00:00
|
|
|
border: 0 !important;
|
2015-02-08 16:24:29 +00:00
|
|
|
margin: 0 !important;
|
|
|
|
padding: 0 !important;
|
|
|
|
}
|
2016-11-20 17:13:39 +00:00
|
|
|
/* stylelint-enable declaration-no-important */
|
2015-02-08 16:24:29 +00:00
|
|
|
|
2017-10-31 17:35:21 +00:00
|
|
|
input[ type='text' ] {
|
2018-11-16 20:38:44 +00:00
|
|
|
.box-sizing( border-box );
|
2015-02-08 16:24:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
input {
|
2017-10-31 17:35:21 +00:00
|
|
|
&[ type='radio' ],
|
|
|
|
&[ type='checkbox' ] {
|
2015-02-08 16:24:29 +00:00
|
|
|
margin-left: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.ui-dialog-titlebar-close {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Put suggestions (default z-index 99) on top of dialogs (z-index 1002) */
|
|
|
|
div.suggestions {
|
|
|
|
z-index: 1099;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
.wikiEditor-toolbar-dialog {
|
|
|
|
.ui-dialog-titlebar-close {
|
|
|
|
right: 0.9em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.wikieditor-toolbar-field-wrapper {
|
|
|
|
padding: 0 0 25px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wikieditor-toolbar-floated-field-wrapper {
|
|
|
|
float: left;
|
|
|
|
margin-right: 2em;
|
|
|
|
}
|