Fix mail display popup in mobile framework

This commit is contained in:
Hadi Nategh 2014-12-11 17:23:37 +00:00
parent 36699ed54b
commit 31908a5032
2 changed files with 21 additions and 5 deletions

View File

@ -796,17 +796,25 @@ blockquote blockquote blockquote blockquote blockquote blockquote{
}
}
/* MOBILE (Portrait & Landscape) View --------------*/
/* MOBILE and tablets (Portrait & Landscape) View --------------*/
@media only screen and (max-device-width:1024px) {
div#mail-index_nm {
height: 100% !important;
/*height: 100% !important;*/
}
/*Disable the preview spliter*/
div#mail-index_mailPreview, div.splitter-bar {
display: none !important;
}
div.mailDisplayContainer{
margin-top: 30px;
margin-left:0;
height: auto;
}
div#mail-display.et2_container {
min-height: initial;
}
}
/* tablets and smartphones (portrait) ----------- */
@media only screen

View File

@ -789,16 +789,24 @@ blockquote blockquote blockquote blockquote blockquote blockquote {
padding-top: 10px;
}
}
/* MOBILE (Portrait & Landscape) View --------------*/
/* MOBILE and tablets (Portrait & Landscape) View --------------*/
@media only screen and (max-device-width: 1024px) {
div#mail-index_nm {
height: 100% !important;
/*height: 100% !important;*/
}
/*Disable the preview spliter*/
div#mail-index_mailPreview,
div.splitter-bar {
display: none !important;
}
div.mailDisplayContainer {
margin-top: 30px;
margin-left: 0;
height: auto;
}
div#mail-display.et2_container {
min-height: initial;
}
}
/* tablets and smartphones (portrait) ----------- */
@media only screen and (max-device-width: 1024px) and (orientation: portrait) {