Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
You must create an account or log in to edit.

Module:Note/styles.css: Difference between revisions

From Amaranth Legacy, available at amaranth-legacy.community
Content deleted Content added
No edit summary
No edit summary
Line 5: Line 5:
margin-top: var(--space-xs);
margin-top: var(--space-xs);
margin-bottom: var(--space-md);
margin-bottom: var(--space-md);
background: var(--background-color-progressive);
background: #384f94;
color: var(--color-inverted-primary);
color: var(--color-inverted-primary);
border-radius: var(--border-radius--medium);
border-radius: var(--border-radius--medium);

Revision as of 03:01, December 16, 2024

.module-note-container {
	display: flex;
	align-items: center;
	padding: var(--space-sm) var(--space-md);
	margin-top: var(--space-xs);
	margin-bottom: var(--space-md);
	background: #384f94;
	color: var(--color-inverted-primary);
	border-radius: var(--border-radius--medium);
}

.module-note-icon img {
	display: block;
	margin-right: var(--space-xs);
	filter: var(--filter-invert-fixed);
}

.module-note-container:not(.module-note-warning) .module-note::selection,
.module-note-container:not(.module-note-warning) .module-note *::selection{
	background-color: var(--color-syntax-orange);
}