mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Scribunto
synced 2024-11-23 15:56:55 +00:00
35a0c45888
Change-Id: I2f146172611aec6dbcd6acf4cfde254076d15149
49 lines
950 B
Plaintext
49 lines
950 B
Plaintext
@import 'mediawiki.skin.variables.less';
|
|
|
|
/* Preserve line breaks, but wrap too if browser supports it */
|
|
/* stylelint-disable-next-line selector-max-id */
|
|
#mw-scribunto-output {
|
|
white-space: pre;
|
|
white-space: pre-wrap;
|
|
}
|
|
|
|
/* stylelint-disable-next-line selector-max-id */
|
|
#mw-scribunto-input {
|
|
width: 100%;
|
|
border: 1px solid @border-color-subtle;
|
|
overflow: auto;
|
|
background: @background-color-notice-subtle;
|
|
font-family: @font-family-monospace;
|
|
}
|
|
|
|
.mw-scribunto-input {
|
|
color: @color-progressive--active;
|
|
font: inherit;
|
|
font-family: @font-family-monospace;
|
|
font-weight: bold;
|
|
margin-top: 0.5em;
|
|
}
|
|
|
|
.mw-scribunto-normalOutput {
|
|
color: @color-base;
|
|
}
|
|
|
|
.mw-scribunto-print {
|
|
color: @color-content-removed;
|
|
}
|
|
|
|
.mw-scribunto-error {
|
|
color: @color-error;
|
|
}
|
|
|
|
.mw-scribunto-message {
|
|
color: @color-content-added;
|
|
}
|
|
|
|
.mw-scribunto-clear {
|
|
color: @color-error;
|
|
text-align: center;
|
|
margin-top: 1em;
|
|
border-bottom: 1px solid @color-error;
|
|
}
|