2021-05-21 02:03:06 +00:00
|
|
|
@import 'mediawiki.ui/variables.less';
|
|
|
|
|
|
|
|
.mw-inputbox-centered {
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mw-inputbox-inline {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mw-inputbox-element {
|
2021-10-16 19:24:22 +00:00
|
|
|
// important is needed to overwrite display:table from mw-ui checkbox
|
2021-05-21 02:03:06 +00:00
|
|
|
display: inline-table !important;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mw-inputbox-input {
|
|
|
|
margin-bottom: 0.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mw-inputbox-createbox:required:invalid ~ .mw-ui-button {
|
2021-10-16 19:24:22 +00:00
|
|
|
// appear like .mw-ui-input:disabled
|
2021-05-21 02:03:06 +00:00
|
|
|
background-color: @colorGray12;
|
|
|
|
color: @color-base--inverted;
|
|
|
|
border-color: @colorGray12;
|
|
|
|
cursor: default;
|
|
|
|
}
|