mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/CodeMirror
synced 2024-12-15 07:21:32 +00:00
b4b9da7e51
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
24 lines
341 B
Plaintext
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;
|
|
}
|
|
}
|