(Created page with "→{{pp-template}}: →The TOC is hidden on Minerva (mobile skin) for width < 720px so must also hide this wrapper: @media all and (max-width: 720px) { body.skin-minerva...") |
(Zoran changed the content model of the page Template:TOC right/styles.css from "wikitext" to "Sanitized CSS": Styling related page) Tag: content model change |
(No difference)
|
Latest revision as of 18:18, 30 March 2022
/* {{pp-template}} */
/* The TOC is hidden on Minerva (mobile skin) for width < 720px so must also hide this wrapper */
@media all and (max-width: 720px) {
body.skin-minerva .tocright {
display: none;
}
.tocright {
width: 100% !important; /* fix the inline width while at small resolution */
}
}
@media all and (min-width: 720px) {
.tocright {
float: right;
clear: right;
width: auto;
margin: 0 0 0.5em 1em;
}
.tocright-clear-left {
clear: left;
}
.tocright-clear-both {
clear: both;
}
.tocright-clear-none {
clear: none;
}
}