mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Scribunto
synced 2024-11-13 18:07:05 +00:00
9a56f262a1
The pre-wrap is unprefixed since Firefox 3.0. The prefixed version is not supported in the current version of Firefox, so the console makes the page very wide. Bug: T157947 Change-Id: I2a56e5b8f97deb35e5f2fed0d4083ffa7df11833
63 lines
887 B
CSS
63 lines
887 B
CSS
.mw-scribunto-console-fieldset {
|
|
background: white;
|
|
color: black;
|
|
}
|
|
|
|
/* Preserve line breaks, but wrap too if browser supports it */
|
|
#mw-scribunto-output {
|
|
white-space: pre;
|
|
white-space: pre-wrap;
|
|
}
|
|
|
|
#mw-scribunto-input {
|
|
width: 100%;
|
|
border: none;
|
|
padding: 0;
|
|
overflow: auto;
|
|
background: #e0e0e0;
|
|
}
|
|
|
|
.mw-scribunto-input {
|
|
color: blue;
|
|
font: inherit;
|
|
font-weight: bold;
|
|
margin-top: .5em;
|
|
}
|
|
|
|
.mw-scribunto-normalOutput {
|
|
color: black;
|
|
background: white;
|
|
}
|
|
|
|
.mw-scribunto-print {
|
|
color: #630;
|
|
background: white;
|
|
}
|
|
|
|
.mw-scribunto-error {
|
|
color: red;
|
|
background: white;
|
|
}
|
|
|
|
.mw-scribunto-propList {
|
|
color: green;
|
|
background: white;
|
|
}
|
|
|
|
.mw-scribunto-message {
|
|
color: green;
|
|
background: white;
|
|
}
|
|
|
|
.mw-scribunto-tabcomplete {
|
|
color: purple;
|
|
background: white;
|
|
}
|
|
|
|
.mw-scribunto-clear {
|
|
color: red;
|
|
text-align: center;
|
|
margin-top: 1em;
|
|
border-bottom: 1px solid red;
|
|
}
|