2015-06-25 00:21:28 +00:00
|
|
|
/*
|
|
|
|
The styles below essentially place the navigation menu below the content,
|
|
|
|
instead of to the side of it. They also hide the logo, as there's no space
|
|
|
|
left for it.
|
|
|
|
*/
|
|
|
|
|
2016-12-12 04:39:14 +00:00
|
|
|
@media screen and ( max-width: @deviceWidthTablet ) {
|
|
|
|
div#mw-head {
|
|
|
|
position: static !important; /* stylelint-disable-line declaration-no-important */
|
|
|
|
margin-top: 0.5em;
|
|
|
|
}
|
2015-06-25 00:21:28 +00:00
|
|
|
|
2016-12-12 04:39:14 +00:00
|
|
|
/* Move the panel to the bottom and display it as in-line lists */
|
|
|
|
div#mw-navigation {
|
|
|
|
div#mw-panel {
|
|
|
|
display: table;
|
|
|
|
position: static;
|
|
|
|
table-layout: fixed;
|
2015-06-25 00:21:28 +00:00
|
|
|
width: 100%;
|
2016-12-12 04:39:14 +00:00
|
|
|
overflow: hidden;
|
|
|
|
font-size: 150%;
|
|
|
|
|
|
|
|
.portal {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
}
|
2015-06-25 00:21:28 +00:00
|
|
|
|
2016-12-12 04:39:14 +00:00
|
|
|
ul li {
|
|
|
|
list-style: none;
|
|
|
|
}
|
2015-06-25 00:21:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-12 04:39:14 +00:00
|
|
|
/* Hide the logo and tabs */
|
|
|
|
div#p-logo {
|
|
|
|
display: none;
|
|
|
|
}
|
2015-06-25 00:21:28 +00:00
|
|
|
|
2016-12-12 04:39:14 +00:00
|
|
|
/* Rearrange various page elements to fill the now-available space */
|
|
|
|
body div#footer {
|
|
|
|
margin-left: 0;
|
|
|
|
padding-top: 0;
|
2015-06-25 00:21:28 +00:00
|
|
|
|
2016-12-12 04:39:14 +00:00
|
|
|
/* don't need these in the footer either... */
|
|
|
|
li#footer-info-lastmod,
|
|
|
|
li#footer-info-viewcount {
|
|
|
|
display: none;
|
|
|
|
}
|
2015-06-25 00:21:28 +00:00
|
|
|
}
|
2016-12-12 04:39:14 +00:00
|
|
|
div#p-personal {
|
|
|
|
display: table;
|
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
|
|
|
top: inherit;
|
|
|
|
left: inherit;
|
|
|
|
right: inherit;
|
2015-06-25 00:21:28 +00:00
|
|
|
|
2016-12-12 04:39:14 +00:00
|
|
|
ul {
|
|
|
|
padding-left: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
div#right-navigation {
|
|
|
|
position: absolute;
|
|
|
|
top: inherit;
|
|
|
|
right: 0;
|
|
|
|
margin-top: 0;
|
|
|
|
float: none;
|
|
|
|
}
|
|
|
|
div#left-navigation {
|
|
|
|
position: absolute;
|
|
|
|
top: inherit;
|
|
|
|
margin: 0;
|
|
|
|
display: block;
|
|
|
|
float: none;
|
|
|
|
}
|
|
|
|
div#p-namespaces,
|
|
|
|
div#p-views,
|
|
|
|
div#p-variants {
|
|
|
|
position: relative;
|
|
|
|
top: 2.5em;
|
|
|
|
}
|
|
|
|
div#p-namespaces {
|
2015-06-25 00:21:28 +00:00
|
|
|
padding-left: 0;
|
|
|
|
}
|
2016-12-12 04:39:14 +00:00
|
|
|
div#p-cactions {
|
|
|
|
top: 2.5em;
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
div#p-search {
|
|
|
|
float: none;
|
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
|
|
|
width: 100vw;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
div#simpleSearch {
|
|
|
|
margin: 0 3em;
|
|
|
|
width: 80vw;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
div.vectorMenu div.menu {
|
|
|
|
left: inherit;
|
|
|
|
right: -1px;
|
|
|
|
}
|
|
|
|
div#content {
|
|
|
|
/* Hide the 1px blue border on the left side */
|
|
|
|
border-left: 0;
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
2015-11-22 14:22:18 +00:00
|
|
|
}
|