Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

MediaWiki:Common.css: Difference between revisions

MediaWiki interface page
Content deleted Content added
// via Wikitext Extension for VSCode
No edit summary
 
(9 intermediate revisions by the same user not shown)
Line 12: Line 12:
border-radius: var(--border-radius--large);
border-radius: var(--border-radius--large);


.citizen-overflow-wrapper {
.citizen-overflow-wrapper:has(.citizen-overflow-content > .wikitable) {
border-radius: var(--border-radius--medium);
border-radius: var(--border-radius--medium);
}
}
Line 22: Line 22:
border-radius: var(--border-radius--medium);
border-radius: var(--border-radius--medium);


.citizen-overflow-wrapper {
.citizen-overflow-wrapper:has(.citizen-overflow-content > .wikitable) {
border-radius: var(--border-radius--small);
border-radius: var(--border-radius--small);
}
}
Line 31: Line 31:
border-radius: var(--border-radius--small);
border-radius: var(--border-radius--small);


.citizen-overflow-wrapper {
.citizen-overflow-wrapper:has(.citizen-overflow-content > .wikitable) {
border-radius: 2px;
border-radius: 2px;
}
}
Line 39: Line 39:
background-color: var(--color-surface-4);
background-color: var(--color-surface-4);
border-radius: 2px;
border-radius: 2px;
}


.citizen-overflow-wrapper {
overflow: hidden;
td, tr, th {
border-radius: 0 !important;
}
}

.nocolor a {
color: unset !important;
}

.expandable-sub-main > :first-child {
margin-top: 0;
}

.expandable-sub-main > :last-child {
margin-bottom: 0;
}
}

Latest revision as of 23:28, 25 November 2025

/* CSS placed here will be applied to all skins */

@import url('https://fonts.googleapis.com/css2?family=Mea+Culpa&family=Quintessential&display=swap');

.ext-mermaid {
    filter: var(--filter-invert);
}

.bounded-container {
    border: 1px solid var(--border-color-base);
    background-color: var(--color-surface-1);
    border-radius: var(--border-radius--large);

    .citizen-overflow-wrapper:has(.citizen-overflow-content > .wikitable) {
        border-radius: var(--border-radius--medium);
    }
}


.bounded-container .bounded-container {
    background-color: var(--color-surface-2);
    border-radius: var(--border-radius--medium);

    .citizen-overflow-wrapper:has(.citizen-overflow-content > .wikitable) {
        border-radius: var(--border-radius--small);
    }
}

.bounded-container .bounded-container .bounded-container {
    background-color: var(--color-surface-3);
    border-radius: var(--border-radius--small);

    .citizen-overflow-wrapper:has(.citizen-overflow-content > .wikitable) {
        border-radius: 2px;
    }
}

.bounded-container .bounded-container .bounded-container .bounded-container {
    background-color: var(--color-surface-4);
    border-radius: 2px;
}


.citizen-overflow-wrapper {
    overflow: hidden;
    td, tr, th {
        border-radius: 0 !important;
    }
}

.nocolor a {
    color: unset !important;
}

.expandable-sub-main > :first-child {
	margin-top: 0;
}

.expandable-sub-main > :last-child {
	margin-bottom: 0;
}