User:Izno/timeless.css
Appearance
Code that you insert on this page could contain malicious content capable of compromising your account. If you import a script from another page with "importScript", "mw.loader.load", "iusc", or "lusc", take note that this causes you to dynamically load a remote script, which could be changed by others. Editors are responsible for all edits and actions they perform, including by scripts. User scripts are not centrally supported and may malfunction or become inoperable due to software changes. A guide to help you find broken scripts is available. If you are unsure whether code you are adding to this page is safe, you can ask at the appropriate village pump. This code will be executed when previewing this page. |
The accompanying .js page for this skin can be added at User:Izno/timeless.js. |
/* adjust the accent colors */
:root {
--grey-accent: #72777d;
}
.color-middle,
.color-left,
.color-right {
background: var(--grey-accent);
}
.mw-first-heading,
.tools-inline li.selected,
.mw-body h1.firstHeading {
border-bottom-color: var(--grey-accent);
}
/* hide a couple items in the user dropdown */
li#pt-betafeatures,
li#pt-sandbox {
display: none;
}
/* full width content box */
.ts-inner {
max-width: none;
}
/* DOC: pretty sure this is for floating table headers */
@media screen and (min-width: 851px) {
.skin-timeless .jquery-tablesorter > thead,
.skin-timeless .mw-sticky-header > thead {
top: 0;
}
}
@media screen and (max-width: 361px) { /* device-specific */
/* allow IP links to wrap in watchlist */
.mw-special-Watchlist .mw-anonuserlink {
overflow-wrap: anywhere;
}
/* search box goes to 100%; FIXME shouldn't be necessary */
form.searchbox {
width: 100%;
}
}