More languages
More actions
No edit summary |
No edit summary |
||
| Line 45: | Line 45: | ||
color: var(--color-error); | color: var(--color-error); | ||
background: hsl(from var(--color-error) h s 10); | background: hsl(from var(--color-error) h s 10); | ||
} | |||
.box h1, .box h2, .box h3, .box h4, .box h5, .box h6, .box p, .box span { | |||
color: inherit; | |||
} | } | ||
Revision as of 00:45, 17 April 2025
/* CSS placed here will be applied to all skins */
.wikibase-entitytermsview .wikibase-toolbar-container .wikibase-toolbar-container,
.wikibase-statementlistview > .wikibase-toolbar-wrapper,
.wikibase-statementgrouplistview .wikibase-statementlistview,
.wikibase-statementgrouplistview .wikibase-statementgroupview-property,
.wikibase-statementgrouplistview .wikibase-statementgroupview-property.wb-edit,
.wikibase-statementgroupview-property.wb-edit + .wikibase-statementlistview > .wikibase-toolbar-wrapper,
.valueview-ineditmode .valueview-input,
.wikibase-referenceview.wb-edit,
.wikibase-referenceview.wb-edit > .wikibase-referenceview-heading {
background: inherit;
background-color: var(--color-surface-1);
}
.wikibase-entitytermsforlanguagelistview,
.wikibase-statementgroupview .wikibase-statementgroupview-property,
.wikibase-statementgrouplistview .wikibase-statementlistview {
border-color: var(--color-surface-3);
border-radius: var(--border-radius-medium);
}
/* Styles for the Template:Box page */
.box {
width: 100%;
border: 0.125em solid black;
border-color: var(--color-surface-3);
border-radius: var(--border-radius-medium);
background: var(--color-surface-2);
padding: 0 2em;
}
.box-primary {
background: var(--color-surface-2);
border-color: var(--color-surface-3);
}
.box-info {
color: hsl(from var(--background-color-progressive) h s 10);
background: var(--background-color-progressive);
}
.box-warning {
color: var(--color-warning);
background: hsl(from var(--color-warning) h s 10);
}
.box-danger {
color: var(--color-error);
background: hsl(from var(--color-error) h s 10);
}
.box h1, .box h2, .box h3, .box h4, .box h5, .box h6, .box p, .box span {
color: inherit;
}