MediaWiki:Common.css: Difference between revisions
Appearance
Replaced content with "→CSS placed here will be applied to all skins: " Tags: Replaced Manual revert |
No edit summary |
||
| Line 1: | Line 1: | ||
/* CSS placed here will be applied to all skins */ | /* CSS placed here will be applied to all skins */ | ||
/* Dark theme for tokens (Select2 multi-selection input) */ | |||
.select2-container--default .select2-selection--multiple { | |||
background-color: #111 !important; | |||
color: #ccc !important; | |||
border: 1px solid #444 !important; | |||
} | |||
/* Style individual tokens */ | |||
.select2-container--default .select2-selection--multiple .select2-selection__choice { | |||
background-color: #333 !important; | |||
color: #eee !important; | |||
border: 1px solid #555 !important; | |||
} | |||
/* Style input text inside the token field */ | |||
.select2-container--default .select2-selection--multiple .select2-search__field { | |||
color: #ccc !important; | |||
background-color: #111 !important; | |||
} | |||
Revision as of 21:59, 10 May 2025
/* CSS placed here will be applied to all skins */
/* Dark theme for tokens (Select2 multi-selection input) */
.select2-container--default .select2-selection--multiple {
background-color: #111 !important;
color: #ccc !important;
border: 1px solid #444 !important;
}
/* Style individual tokens */
.select2-container--default .select2-selection--multiple .select2-selection__choice {
background-color: #333 !important;
color: #eee !important;
border: 1px solid #555 !important;
}
/* Style input text inside the token field */
.select2-container--default .select2-selection--multiple .select2-search__field {
color: #ccc !important;
background-color: #111 !important;
}