mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/InputBox
synced 2024-11-15 11:13:27 +00:00
ddf6329103
'createboxButton' class was erroneously removed in Ia608324703987371 so add it back again. Also prefixed "inputbox-element" class with a "mw-" for consitency as well. Bug: T92611 Change-Id: I36718671e6012427a647de7a1cc712e3c8394ee1
16 lines
288 B
CSS
16 lines
288 B
CSS
.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;
|
|
}
|