mediawiki-extensions-CodeMi.../resources/modules/popup.less
Sam Wilson b4b9da7e51 Join the popup label into one message
The popup label was being styled as two words from two different
i18n messages, each a different colour. This combines them into
one, moves the identifing class name up to the outer span, and
colours both words blue (the outer braces are left black).

Bug: T174219
Change-Id: Id1166f48ae4b3b8daff29be56dd92ef330dd9cef
2017-09-11 10:23:22 +08:00

24 lines
341 B
Plaintext

.codemirror-popup {
text-align: center;
font-size: 12.8px;
.oo-ui-popupWidget-head {
font-weight: bold;
float: none;
display: inline-block;
> .oo-ui-labelElement-label {
font-size: 14px;
margin-left: 2.5em;
}
}
.codemirror-popup-label span {
color: #1e90ff;
}
.codemirror-popup-text {
margin-bottom: 1em;
}
}