MediaWiki:Common.css: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 12: | Line 12: | ||
.mp-center { | .mp-center { | ||
text-align: center; | text-align: center; | ||
} | } | ||
.naviClickable { | .naviClickable { | ||
cursor: pointer; | cursor: pointer; | ||
color: # | font-weight: 600; | ||
color: #2a6db0; | |||
background: rgba(42, 109, 176, 0.08); | |||
padding: 2px 6px; | |||
border-radius: 4px; | |||
transition: all 0.15s ease; | |||
} | } | ||
.naviClickable:hover | .naviClickable:hover { | ||
background: rgba(42, 109, 176, 0.18); | |||
color: #174a7c; | |||
} | } | ||
. | .naviClickable.naviActive { | ||
color: #1a7f37; | |||
background: rgba(26, 127, 55, 0.15); | |||
color: # | |||
} | } | ||
. | .naviClickable.naviError { | ||
color: #a33; | color: #a33; | ||
background: rgba(170, 51, 51, 0.15); | |||
} | } | ||
Revision as of 14:45, 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;
}
.naviClickable {
cursor: pointer;
font-weight: 600;
color: #2a6db0;
background: rgba(42, 109, 176, 0.08);
padding: 2px 6px;
border-radius: 4px;
transition: all 0.15s ease;
}
.naviClickable:hover {
background: rgba(42, 109, 176, 0.18);
color: #174a7c;
}
.naviClickable.naviActive {
color: #1a7f37;
background: rgba(26, 127, 55, 0.15);
}
.naviClickable.naviError {
color: #a33;
background: rgba(170, 51, 51, 0.15);
}