From 325731101f02fc178f701a152408ffe63b03e271 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Mon, 7 Oct 2019 16:55:09 +0300 Subject: [PATCH 01/11] Fix header logo for deploy versions (fix rev. Append toolbar skeleton) --- apps/documenteditor/main/index.html.deploy | 2 +- apps/presentationeditor/main/index.html.deploy | 2 +- apps/spreadsheeteditor/main/index.html.deploy | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/documenteditor/main/index.html.deploy b/apps/documenteditor/main/index.html.deploy index 5a11eb7c6..5a4c08e32 100644 --- a/apps/documenteditor/main/index.html.deploy +++ b/apps/documenteditor/main/index.html.deploy @@ -217,7 +217,7 @@ -
+
From dea4d0a4c1d66a9a4c5c2ebfff317ae42bb0eab2 Mon Sep 17 00:00:00 2001 From: Maxim Kadushkin Date: Tue, 8 Oct 2019 14:59:26 +0300 Subject: [PATCH 11/11] [DE] units for zero was cleared in app.css during deployment --- apps/documenteditor/main/resources/less/toolbar.less | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/documenteditor/main/resources/less/toolbar.less b/apps/documenteditor/main/resources/less/toolbar.less index 39e72988b..c4ab40396 100644 --- a/apps/documenteditor/main/resources/less/toolbar.less +++ b/apps/documenteditor/main/resources/less/toolbar.less @@ -70,7 +70,8 @@ .loop((@counter - 1)); li:nth-child(@{counter}) > a.item-contents { div { - background-position: 0 calc(~"var(--bckgHOffset) - " (@counter - 1)*@contents-menu-item-height); + @incr-height: (@counter - 1)*@contents-menu-item-height; + background-position: 0 ~"calc(var(--bckgHOffset) - @{incr-height})"; } } }