MediaWiki:Common.css/src/extension/Scribunto.scss

From Terraria Wiki
Jump to navigation Jump to search

This page is one of the SCSS pages which are the basis for MediaWiki:Common.css. After you edit this page, you will need to recompile them for your changes to take effect. See Terraria Wiki:CSS to learn more.

/********* Extension:Scribunto *********/

/* The "Script error" dialog uses jquery.ui.dialog, which looks the same in all
 * themes. The links do use theme-dependent styling by default though, which
 * causes them to be hard to read in some themes.
 * Resetting them here to the Vector default to be the same in all themes. */
.scribunto-trace a {
	color: #0645ad;
}


/* overwriting styles from here:
 * https://gerrit.wikimedia.org/r/plugins/gitiles/mediawiki/extensions/Scribunto/+/refs/heads/master/modules/ext.scribunto.edit.css */

/* Styles for the "debug console" at the bottom of the editing screen on Module: pages */

.mw-scribunto-console-fieldset {
	background-color: var(--ooui--messagewidget-notice-background-color);
	color: var(--theme-text-color);
}

#mw-scribunto-input {
	background-color: var(--ooui--textarea-background-color);
}

.mw-scribunto-input {
	color: var(--theme-text-color-highlight);
}

.mw-scribunto-normalOutput {
	color: var(--theme-text-color);
	background: transparent;
}

.mw-scribunto-print {
	color: var(--oouihelper--yellow);
	background: transparent;
}

.mw-scribunto-error {
	color: var(--ooui--messagewidget-error-color);
	background: transparent;
}

.mw-scribunto-message {
	color: var(--theme-text-color-em);
	background: transparent;
}