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.
/* Hide "Create account" — accounts are auto-provisioned by the CLI */
#pt-createaccount,
.mw-createaccount-join {
display: none !important;
}
/* Copy button on <pre> blocks */
.pre-copy-wrapper {
position: relative;
}
.pre-copy-btn {
position: absolute;
top: 8px;
right: 8px;
padding: 4px 12px;
border: 1px solid #a2a9b1;
border-radius: 3px;
background: #f8f9fa;
color: #202122;
font-size: 13px;
cursor: pointer;
opacity: 0;
transition: opacity 0.15s;
}
.pre-copy-wrapper:hover .pre-copy-btn {
opacity: 1;
}
.pre-copy-btn:hover {
background: #eaecf0;
}