mediawiki-extensions-InputBox/resources/ext.inputBox.styles.less
Fomafix 14a2d08712 Remove styles for cached old HTML
The cache is now expired.

This change is a follow-up to 93351fb7d9.

Change-Id: Ia42e081aa2f74bab72eef9227ba76057c15ba64f
2021-10-16 19:47:25 +00:00

30 lines
588 B
Plaintext

@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 {
/* important is needed to overwrite display:table from mw-ui checkbox */
display: inline-table !important;
white-space: nowrap;
}
.mw-inputbox-input {
margin-bottom: 0.5em;
}
.mw-inputbox-createbox:required:invalid ~ .mw-ui-button {
/* appear like .mw-ui-input:disabled */
background-color: @colorGray12;
color: @color-base--inverted;
border-color: @colorGray12;
cursor: default;
}