[Libreoffice-commits] online.git: Branch 'distro/collabora/collabora-online-3-0' - loleaflet/dist
Aditya Dewan
aditya.dewan at collabora.co.uk
Thu Feb 15 14:42:13 UTC 2018
loleaflet/dist/toolbar.css | 3 ++-
loleaflet/dist/toolbar/toolbar.js | 4 ++++
2 files changed, 6 insertions(+), 1 deletion(-)
New commits:
commit 093dd959f0737cb060e1a99fdf274b0be051982d
Author: Aditya Dewan <aditya.dewan at collabora.co.uk>
Date: Sat Dec 16 02:15:35 2017 +0530
show/hide of document name on top right
Change-Id: I83ae0256c0fdd1c9f61495638ecf9d69f5473790
Reviewed-on: https://gerrit.libreoffice.org/46576
Reviewed-by: pranavk <pranavk at collabora.co.uk>
Tested-by: pranavk <pranavk at collabora.co.uk>
(cherry picked from commit 30b44bf37349f9a0d42182f018f377d6d3ce9066)
(cherry picked from commit 49bbe4367ff65264677e05ca1fa0744d7b8c90b3)
Reviewed-on: https://gerrit.libreoffice.org/48376
Reviewed-by: Andras Timar <andras.timar at collabora.com>
Tested-by: Andras Timar <andras.timar at collabora.com>
diff --git a/loleaflet/dist/toolbar.css b/loleaflet/dist/toolbar.css
index 6564ae95..a00694d7 100644
--- a/loleaflet/dist/toolbar.css
+++ b/loleaflet/dist/toolbar.css
@@ -79,7 +79,7 @@
top: 2px;
width: 200px;
font-size: 16px;
- //font-weight: bold;
+ padding-right: 20px;
border: 1px solid transparent;
background-color: transparent;
}
@@ -95,6 +95,7 @@
background-image: url('../images/lc_editdoc.svg');
background-position: right;
background-repeat: no-repeat;
+ padding-right: 20px;
}
#closebuttonwrapper {
diff --git a/loleaflet/dist/toolbar/toolbar.js b/loleaflet/dist/toolbar/toolbar.js
index db7e9b67..d083e4d6 100644
--- a/loleaflet/dist/toolbar/toolbar.js
+++ b/loleaflet/dist/toolbar/toolbar.js
@@ -73,6 +73,8 @@ function _mobilify() {
oneUser = '1';
noUser = '0';
updateUserListCount();
+
+ $('#document-name-input').hide();
}
function _unmobilify() {
@@ -104,6 +106,8 @@ function _unmobilify() {
oneUser = _('1 user');
noUser = _('0 users');
updateUserListCount();
+
+ $('#document-name-input').show();
}
function resizeToolbar() {
More information about the Libreoffice-commits
mailing list