MediaWiki:CodeMirror.css: Difference between revisions

From Coral Island Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
(One intermediate revision by the same user not shown)
Line 3: Line 3:
border: var(--theme-border-color);
border: var(--theme-border-color);
color: var(--theme-page-text-color);
color: var(--theme-page-text-color);
 
/*Sub styling*/
/*Sub styling*/
#wikiEditor-ui-toolbar,
#wikiEditor-ui-toolbar,
Line 42: Line 42:
}
}
}
}
 
.skin-vector-dark .oo-ui-buttonElement-button,
.skin-vector-dark .oo-ui-buttonElement-button {
.skin-vector-dark .ui-dialog .ui-dialog-titlebar-close {
filter: invert();
filter: invert();
}
}
Line 49: Line 49:
.ui-dialog > div,
.ui-dialog > div,
body .ui-dialog .ui-widget-header {
body .ui-dialog .ui-widget-header {
  color: var(--theme-page-text-color);
color: var(--theme-page-text-color);
  background: var(--theme-page-background-color) !important;
background: var(--theme-page-background-color) !important;
  background-image: none;
background-image: none;
}
}
.ui-dialog .ui-dialog-titlebar-close {
.ui-dialog .ui-button-text {
color: var(--theme-page-text-color--inverse);
background: var(--theme-page-background-color--secondary);
color: var(--theme-link-color);
}
}

Latest revision as of 02:11, 19 July 2024

.wikiEditor-ui-view {
	background: var(--theme-page-background-color--secondary);
	border: var(--theme-border-color);
	color: var(--theme-page-text-color);

	/*Sub styling*/
	#wikiEditor-ui-toolbar,
	.group,
	.sections,
	.section,
	#msupload-dropzone,
	#msupload-div,
	.group :is(.label, .tool-select .label, .menu .options .option) {
		background: var(--theme-page-background-color--secondary);
		border: var(--theme-border-color);
		color: var(--theme-page-text-color);
		fill: var(--theme-page-text-color);
	}
	.tabs span.tab a,
	.group .oo-ui-iconElement-icon {
		color: var(--theme-link-color);
		fill: var(--theme-link-color);
	}
	.page-characters div span,
	.tabs span.tab a.current {
		color: var(--theme-page-text-color);
	}
	#wikiEditor-section-characters {
		[role="option"] {
			color: var(--theme-page-text-color);
		}
		[role="option"]:hover,
		[role="option"].current {
			color: var(--theme-page-text-color);
			background-color: var(--theme-page-background-color) !important;
		}
	}
	#wikiEditor-section-main .group-insert a.tool-button,
	#msupload-container,
	.ve-init-mw-editSwitch {
		display: none;
	}
}
.skin-vector-dark .oo-ui-buttonElement-button,
.skin-vector-dark .ui-dialog .ui-dialog-titlebar-close {
	filter: invert();
}
.ui-dialog,
.ui-dialog > div,
body .ui-dialog .ui-widget-header {
	color: var(--theme-page-text-color);
	background: var(--theme-page-background-color) !important;
	background-image: none;
}
.ui-dialog .ui-button-text {
	background: var(--theme-page-background-color--secondary);
	color: var(--theme-link-color);
}