MediaWiki: Tweeki.css: Difference between revisions
From Renoise User Manual
No edit summary |
No edit summary |
||
| Line 26: | Line 26: | ||
/* Auto-scaling of images in tables is too heavy */ | /* Auto-scaling of images in tables is too heavy */ | ||
.do-not-scale img { | .do-not-scale img { | ||
max-width: initial; | |||
height: initial; | height: initial; | ||
} | } | ||
Revision as of 10:34, 3 January 2019
/* CSS placed here will affect users of the Tweeki skin */
/* Scroll left sidebar with the entire screen */
@media (min-width: 992px) {
.sidebar-left-wrapper {
position:absolute;
}
}
/* More condensed site-map tree */
.sidebar-left-wrapper ol, ul {
padding-left: 1em;
}
/* Hide footer - it overflows the left, fixed side-bar */
#footer.footer {
display: none;
}
/* Prevent that images in the main content flow into the right sidebar */
div#bodyContent img {
max-width: 100%;
height: auto;
}
/* Auto-scaling of images in tables is too heavy */
.do-not-scale img {
max-width: initial;
height: initial;
}