loleaflet/dist/leaflet.css | 2 +- loleaflet/dist/loleaflet.css | 2 +- loleaflet/dist/menubar.css | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-)
New commits: commit edb617dc94643db2aa18e4762ac306e3e2bf9906 Author: Henry Castro <[email protected]> AuthorDate: Tue Oct 2 22:34:01 2018 -0400 Commit: Jan Holesovsky <[email protected]> CommitDate: Wed Oct 3 11:14:23 2018 +0200 loleafet: mobile: fix max-height screen size tablet Change-Id: I1c869089aee6991de34e06daf0a38d8b07f82a22 Reviewed-on: https://gerrit.libreoffice.org/61280 Reviewed-by: Jan Holesovsky <[email protected]> Tested-by: Jan Holesovsky <[email protected]> diff --git a/loleaflet/dist/leaflet.css b/loleaflet/dist/leaflet.css index 28de9a21b..332490ed5 100644 --- a/loleaflet/dist/leaflet.css +++ b/loleaflet/dist/leaflet.css @@ -788,7 +788,7 @@ input.clipboard { } } -@media (max-width: 768px) { +@media (max-width: 768px),(max-height: 768px) { .loleaflet-ruler { height: 0px; display: none; diff --git a/loleaflet/dist/loleaflet.css b/loleaflet/dist/loleaflet.css index 07565ff29..e7d38b5eb 100644 --- a/loleaflet/dist/loleaflet.css +++ b/loleaflet/dist/loleaflet.css @@ -81,7 +81,7 @@ body { width: 0; } -@media (max-width: 768px) { +@media (max-width: 768px),(max-height: 768px) { /* Show slidesorter beyond 768px only */ #presentation-controls-wrapper { display: none; diff --git a/loleaflet/dist/menubar.css b/loleaflet/dist/menubar.css index 9649cadd8..7af9d31b6 100644 --- a/loleaflet/dist/menubar.css +++ b/loleaflet/dist/menubar.css @@ -191,7 +191,7 @@ } /* desktop mode */ -@media (min-width: 769px) { +@media (min-width: 769px) and (orientation: portrait),(min-height: 769px) and (orientation: landscape) { /* hide the button in desktop view */ .main-menu-btn { position: absolute; _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
