[Libreoffice-commits] online.git: loleaflet/css loleaflet/src
Szymon Kłos (via logerrit)
logerrit at kemper.freedesktop.org
Thu Oct 10 10:14:18 UTC 2019
loleaflet/css/toolbar.css | 2 +-
loleaflet/src/control/Control.MobileWizard.js | 2 ++
2 files changed, 3 insertions(+), 1 deletion(-)
New commits:
commit 5d3cc1935830b9e8976ac5a8fc55476fc68dd713
Author: Szymon Kłos <szymon.klos at collabora.com>
AuthorDate: Thu Oct 10 12:13:36 2019 +0200
Commit: Szymon Kłos <szymon.klos at collabora.com>
CommitDate: Thu Oct 10 12:13:55 2019 +0200
jsdialogs: hide toolbar-down if tool palette visible
Change-Id: I4f1dc4b06dd916e65be808ddd98fd6b49d67e5cc
diff --git a/loleaflet/css/toolbar.css b/loleaflet/css/toolbar.css
index 5411274a3..1ffed1b48 100644
--- a/loleaflet/css/toolbar.css
+++ b/loleaflet/css/toolbar.css
@@ -1000,7 +1000,7 @@ tr.useritem > td > img {
height: 45%;
width: 100%;
position: fixed;
- bottom: 34px;
+ bottom: 0px;
z-index: 1000;
background-color: white;
box-shadow: 0px -2px 4px 1px #00000030
diff --git a/loleaflet/src/control/Control.MobileWizard.js b/loleaflet/src/control/Control.MobileWizard.js
index edde4ad8c..6cbb4e68e 100644
--- a/loleaflet/src/control/Control.MobileWizard.js
+++ b/loleaflet/src/control/Control.MobileWizard.js
@@ -43,11 +43,13 @@ L.Control.MobileWizard = L.Control.extend({
_showWizard: function() {
$('#mobile-wizard').show();
+ $('#toolbar-down').hide();
},
_hideWizard: function() {
$('#mobile-wizard').hide();
$('#mobile-wizard-content').empty();
+ $('#toolbar-down').show();
this._isActive = false;
},
More information about the Libreoffice-commits
mailing list