MediaWiki:Common.css
Appearance
Note: After publishing, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
- Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
.cw-messagebox {
border: 1px solid #a2a9b1;
background: #f8f9fa;
color: #202122;
margin: 1em 0 0.25em 0; /* top right bottom left */
padding: 0.75em 1em;
display: flex;
align-items: center;
gap: 0.9em;
box-sizing: border-box;
}
.cw-messagebox-icon {
width: 32px;
min-width: 32px;
height: 32px;
display: flex;
align-items: center;
justify-content: center;
font-size: 22px;
line-height: 1;
text-align: center;
color: inherit;
}
.cw-messagebox-icon img {
max-width: 32px;
max-height: 32px;
display: block;
}
.cw-messagebox-content {
flex: 1;
color: inherit;
margin: 0;
padding: 0;
}
.cw-messagebox-content p {
margin: 0;
padding: 0;
}
.cw-command-table {
width: 100%;
border-collapse: collapse;
margin: 1em 0;
}
.cw-command-table th,
.cw-command-table td {
border: 1px solid #a2a9b1;
padding: 0.5em 0.75em;
vertical-align: top;
}
.cw-command-table-command {
width: 12em;
white-space: nowrap;
text-align: left;
background: #eaecf0;
font-weight: bold;
font-family: monospace;
}
.cw-command-table-description {
width: auto;
background: #fff;
}
/* Dark mode */
html.skin-theme-clientpref-night .cw-command-table th,
html.skin-theme-clientpref-night .cw-command-table td {
border-color: #54595d;
}
html.skin-theme-clientpref-night .cw-command-table-command {
background: #2a2d31;
color: #f8f9fa;
}
html.skin-theme-clientpref-night .cw-command-table-description {
background: #202122;
color: #f8f9fa;
}