summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/Scribunto/modules/ext.scribunto.edit.css
diff options
context:
space:
mode:
authorYaco <franco@reevo.org>2021-10-19 20:30:39 -0300
committerYaco <franco@reevo.org>2021-10-19 20:30:39 -0300
commit8c201ace3699b4928daf41eb7b4cdcb4565c6f3b (patch)
treefbd98f026864e9c1919d3ee740b6799ca0c651e2 /www/wiki/extensions/Scribunto/modules/ext.scribunto.edit.css
parente3880a1c86acaa3bbd05786ad2f5c586e6511a58 (diff)
adds Scribunto
Diffstat (limited to 'www/wiki/extensions/Scribunto/modules/ext.scribunto.edit.css')
-rw-r--r--www/wiki/extensions/Scribunto/modules/ext.scribunto.edit.css64
1 files changed, 64 insertions, 0 deletions
diff --git a/www/wiki/extensions/Scribunto/modules/ext.scribunto.edit.css b/www/wiki/extensions/Scribunto/modules/ext.scribunto.edit.css
new file mode 100644
index 00000000..295fa390
--- /dev/null
+++ b/www/wiki/extensions/Scribunto/modules/ext.scribunto.edit.css
@@ -0,0 +1,64 @@
+.mw-scribunto-console-fieldset {
+ background: #fff;
+ color: #000;
+}
+
+/* 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: 0;
+ padding: 0;
+ overflow: auto;
+ background: #e0e0e0;
+}
+
+.mw-scribunto-input {
+ color: #00f;
+ font: inherit;
+ font-weight: bold;
+ margin-top: 0.5em;
+}
+
+.mw-scribunto-normalOutput {
+ color: #000;
+ background: #fff;
+}
+
+.mw-scribunto-print {
+ color: #630;
+ background: #fff;
+}
+
+.mw-scribunto-error {
+ color: #f00;
+ background: #fff;
+}
+
+.mw-scribunto-propList {
+ color: #008000;
+ background: #fff;
+}
+
+.mw-scribunto-message {
+ color: #008000;
+ background: #fff;
+}
+
+.mw-scribunto-tabcomplete {
+ color: #800080;
+ background: #fff;
+}
+
+.mw-scribunto-clear {
+ color: #f00;
+ text-align: center;
+ margin-top: 1em;
+ border-bottom: 1px solid #f00;
+}