mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 09:05:16 +01:00
Disable mail preview spliter for mobile framework, and apply some font styling
This commit is contained in:
parent
6289006330
commit
5084f4848b
@ -795,3 +795,40 @@ blockquote blockquote blockquote blockquote blockquote blockquote{
|
||||
padding-top: 10px;
|
||||
}
|
||||
}
|
||||
|
||||
/* MOBILE (Portrait & Landscape) View --------------*/
|
||||
@media only screen and (max-device-width:1024px) {
|
||||
div#mail-index_nm {
|
||||
height: 100% !important;
|
||||
}
|
||||
/*Disable the preview spliter*/
|
||||
div#mail-index_mailPreview, div.splitter-bar {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
/* tablets and smartphones (portrait) ----------- */
|
||||
@media only screen
|
||||
and (max-device-width : 1024px)
|
||||
and (orientation : portrait) {
|
||||
div#mail-index div#mail-index_nm tr.mail.row {
|
||||
font-size: medium;
|
||||
}
|
||||
}
|
||||
|
||||
/* Smartphones (landscape) ----------- */
|
||||
@media only screen
|
||||
and (min-width : 321px)
|
||||
and (max-device-width:768){
|
||||
div#mail-index div#mail-index_nm tr.mail.row {
|
||||
font-size: medium;
|
||||
}
|
||||
}
|
||||
|
||||
/* Mobile (landscape) Tablet----------- */
|
||||
@media only screen
|
||||
and (max-device-width : 1024px)
|
||||
and (orientation : landscape) {
|
||||
|
||||
}
|
@ -789,6 +789,30 @@ blockquote blockquote blockquote blockquote blockquote blockquote {
|
||||
padding-top: 10px;
|
||||
}
|
||||
}
|
||||
/* MOBILE (Portrait & Landscape) View --------------*/
|
||||
@media only screen and (max-device-width: 1024px) {
|
||||
div#mail-index_nm {
|
||||
height: 100% !important;
|
||||
}
|
||||
/*Disable the preview spliter*/
|
||||
div#mail-index_mailPreview,
|
||||
div.splitter-bar {
|
||||
display: none !important;
|
||||
}
|
||||
}
|
||||
/* tablets and smartphones (portrait) ----------- */
|
||||
@media only screen and (max-device-width: 1024px) and (orientation: portrait) {
|
||||
div#mail-index div#mail-index_nm tr.mail.row {
|
||||
font-size: medium;
|
||||
}
|
||||
}
|
||||
/* Smartphones (landscape) ----------- */
|
||||
@media only screen and (min-width: 321px) and (max-device-width: 768) {
|
||||
div#mail-index div#mail-index_nm tr.mail.row {
|
||||
font-size: medium;
|
||||
}
|
||||
}
|
||||
/* Mobile (landscape) Tablet----------- */
|
||||
#popupMainDiv {
|
||||
padding: 5px;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user