loleaflet/css/mobilewizard.css | 6 ++++++ loleaflet/css/vex.css | 16 +++++++++++----- 2 files changed, 17 insertions(+), 5 deletions(-)
New commits: commit ca4ebc481b2df678de3e31a21c1de8205fe5b288 Author: Pedro Pinto Silva <[email protected]> AuthorDate: Wed Nov 6 11:00:51 2019 +0100 Commit: Michael Meeks <[email protected]> CommitDate: Wed Nov 6 16:41:53 2019 +0100 Vex: idle: differentiate styles depending on device Change-Id: I236e64b2688e38c6651563f2c206a7b9276bae50 Reviewed-on: https://gerrit.libreoffice.org/82131 Reviewed-by: Michael Meeks <[email protected]> Tested-by: Michael Meeks <[email protected]> diff --git a/loleaflet/css/vex.css b/loleaflet/css/vex.css index 51f6cb550..2b90f1947 100644 --- a/loleaflet/css/vex.css +++ b/loleaflet/css/vex.css @@ -23,13 +23,13 @@ } /* dialog shown when user is idle */ .vex-open .loleaflet-user-idle { - background: rgba(0, 0, 0, 0)!important; - font-size: xx-large!important; - color: #fff!important; - text-align: center!important; + background: #ffffffe0 !important; + font-size: xx-large !important; + color: #7a8592 !important; + text-align: center !important; } .vex-open .loleaflet-user-idle .vex-dialog-buttons { - display: none!important; + display: none !important; } .vex.vex-theme-plain{ @@ -53,6 +53,12 @@ /*mobile*/ @media (max-width: 767px), (max-device-height: 767px) { + .vex-open .loleaflet-user-idle { + background: rgba(0, 0, 0, 0)!important; + font-size: xx-large!important; + color: #fff!important; + text-align: center!important; + } .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input select, .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input textarea, .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="date"], .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="datetime"], .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="datetime-local"], .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="email"], .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="month"], .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="number"], .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="password"], .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="search"], .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="tel"], .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="text"], .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="time"], .vex.ve x-theme-plain .vex-dialog-form .vex-dialog-input input[type="url"], .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="week"]{ padding: 0 !important } commit 79456ef1ffb020a06af3210ce46720607ac29fae Author: Pedro Pinto Silva <[email protected]> AuthorDate: Wed Nov 6 16:34:49 2019 +0100 Commit: Michael Meeks <[email protected]> CommitDate: Wed Nov 6 16:41:44 2019 +0100 Impress: mobilewizard: hide wizardheader when in landscape Change-Id: I4105f94351181b61a97d7db9e6caae6d8dfcd891 Reviewed-on: https://gerrit.libreoffice.org/82150 Reviewed-by: Michael Meeks <[email protected]> Tested-by: Michael Meeks <[email protected]> diff --git a/loleaflet/css/mobilewizard.css b/loleaflet/css/mobilewizard.css index eed554616..5ed84e716 100644 --- a/loleaflet/css/mobilewizard.css +++ b/loleaflet/css/mobilewizard.css @@ -270,3 +270,9 @@ p.mobile-wizard.ui-combobox-text.selected { #rotationlabel{ display: none; } +@media (orientation: landscape) { + #mobile-wizard-header{display: none;} +} +@media (orientation: portrait) { + #mobile-wizard-header{display: block;} +} _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
