[ticket/522] Hide portal on all pages on low resolutions

B3P-522
This commit is contained in:
Marc Alexander
2015-04-06 17:22:57 +02:00
parent dd43a8364c
commit 0123621025

View File

@@ -1,14 +1,29 @@
@media only screen and (max-width: 870px), only screen and (max-device-width: 870px) {
.portal-body-center dd.posts, .portal-body-center dd.views {
display: none !important;
}
.portal-body-center dt { width: 130% !important; }
.portal-body-center dd.posts, .portal-body-center dd.views {
display: none !important;
}
.portal-body-center dt { width: 130% !important; }
.portal-body-center dd.lastpost { width: auto; }
}
@media only screen and (max-width: 740px), only screen and (max-device-width: 740px) {
.portal-body-center dt { width: 140% !important; }
#portal-left ul.topiclist dd, #portal-right ul.topiclist dd { display: block !important; }
#portal-left ul.topiclist dd, #portal-right ul.topiclist dd { display: block !important; }
#portal-right > .portal-clear, #portal-body > .portal-clear, #portal-left > .portal-clear,
#portal-center > .portal-clear, #portal-login-box .portal-clear { display: none !important; }
}
#portal-right > .portal-clear, #portal-body > .portal-clear, #portal-left > .portal-clear,
#portal-center > .portal-clear, #portal-login-box .portal-clear { display: none !important; }
}
@media only screen and (max-width: 700px), only screen and (max-device-width: 700px) {
.portal-body-center dt { width: 100% !important; }
}
@media only screen and (max-width: 540px), only screen and (max-device-width: 540px) {
#portal-left, #portal-right {
display: none;
}
.portal-body-center {
margin: 0 !important;
padding: 0 !important;
}
}