[Libreoffice-commits] online.git: 2 commits - loleaflet/css

Pedro Pinto Silva (via logerrit) logerrit at kemper.freedesktop.org
Wed Nov 6 15:42:03 UTC 2019


 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 <pedro.silva at collabora.com>
AuthorDate: Wed Nov 6 11:00:51 2019 +0100
Commit:     Michael Meeks <michael.meeks at collabora.com>
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 <michael.meeks at collabora.com>
    Tested-by: Michael Meeks <michael.meeks at collabora.com>

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 <pedro.silva at collabora.com>
AuthorDate: Wed Nov 6 16:34:49 2019 +0100
Commit:     Michael Meeks <michael.meeks at collabora.com>
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 <michael.meeks at collabora.com>
    Tested-by: Michael Meeks <michael.meeks at collabora.com>

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;
 }
+ at media (orientation: landscape) {
+	#mobile-wizard-header{display: none;}
+}
+ at media (orientation: portrait) {
+	#mobile-wizard-header{display: block;}
+}


More information about the Libreoffice-commits mailing list