MediaWiki:Common.css: Difference between revisions
Jump to navigation
Jump to search
No edit summary Tag: Manual revert |
No edit summary |
||
| Line 12: | Line 12: | ||
.mp-center { | .mp-center { | ||
text-align: center; | text-align: center; | ||
} | |||
.naviBlock { | |||
display: inline-flex; | |||
align-items: center; | |||
gap: 0.45rem; | |||
white-space: nowrap; | |||
} | |||
.naviClickable { | |||
cursor: pointer; | |||
color: #0645ad; | |||
text-decoration: underline; | |||
} | |||
.naviClickable:hover, | |||
.naviClickable:focus { | |||
color: #0b63d1; | |||
text-decoration: underline; | |||
outline: none; | |||
} | |||
.naviStatus { | |||
font-size: 0.85em; | |||
padding: 0.1rem 0.4rem; | |||
border-radius: 3px; | |||
background: #eaf3ff; | |||
color: #1d4f91; | |||
transition: opacity 0.15s ease; | |||
user-select: none; | |||
} | |||
.naviStatus.naviError { | |||
background: #fff0f0; | |||
color: #a33; | |||
} | } | ||
Revision as of 14:42, 2 April 2026
/* CSS placed here will be applied to all skins */
body.skin-vector .mw-body,
body.skin-vector-2022 .mw-body {
background: #f3f4f6;
}
.mp-muted {
color: #6b7280;
}
.mp-center {
text-align: center;
}
.naviBlock {
display: inline-flex;
align-items: center;
gap: 0.45rem;
white-space: nowrap;
}
.naviClickable {
cursor: pointer;
color: #0645ad;
text-decoration: underline;
}
.naviClickable:hover,
.naviClickable:focus {
color: #0b63d1;
text-decoration: underline;
outline: none;
}
.naviStatus {
font-size: 0.85em;
padding: 0.1rem 0.4rem;
border-radius: 3px;
background: #eaf3ff;
color: #1d4f91;
transition: opacity 0.15s ease;
user-select: none;
}
.naviStatus.naviError {
background: #fff0f0;
color: #a33;
}