From f4075fd6c89afde73be1cf4e7049ec5774cc922a Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Tue, 5 Apr 2022 11:28:35 +0300 Subject: [PATCH 1/2] Refactoring info tips --- apps/common/main/resources/less/synchronize-tip.less | 8 -------- 1 file changed, 8 deletions(-) diff --git a/apps/common/main/resources/less/synchronize-tip.less b/apps/common/main/resources/less/synchronize-tip.less index 06b72e9f7..2e3297484 100644 --- a/apps/common/main/resources/less/synchronize-tip.less +++ b/apps/common/main/resources/less/synchronize-tip.less @@ -195,7 +195,6 @@ top: 0; left: 8px; width: 16px; - .box-shadow(0 0 8px -1px rgba(0, 0, 0, 0.2)); } } } @@ -212,7 +211,6 @@ top: 0; left: -8px; width: 16px; - .box-shadow(0 4px 8px -1px rgba(0, 0, 0, 0.2)); } } } @@ -324,7 +322,6 @@ &:before { top: -8px; left: -8px; - .box-shadow(2px 2px 8px -1px rgba(0, 0, 0, 0.2)); } &:after { top: -6px; @@ -346,7 +343,6 @@ &:before { top: 8px; left: 8px; - .box-shadow(0 0 8px -1px rgba(0, 0, 0, 0.2)); } &:after { top: 6px; @@ -368,7 +364,6 @@ &:before { top: 8px; left: -8px; - .box-shadow(0 0 8px -1px rgba(0, 0, 0, 0.2)); } &:after { top: 6px; @@ -412,8 +407,6 @@ &:before { bottom: -7px; left: -7px; - //width: 15px; - .box-shadow(0 0 8px -1px rgba(0, 0, 0, 0.2)); } &:after { top: -2px; @@ -475,7 +468,6 @@ -o-transform: rotate(45deg); transform: rotate(45deg); - .box-shadow(0 4px 8px -1px rgba(0, 0, 0, 0.2)); border: @scaled-one-px-value-ie solid @background-notification-popover-ie; border: @scaled-one-px-value solid @background-notification-popover; } From bbf94ac3a150e2bd4182b1fdb5b4fcb47f2b61fb Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Tue, 5 Apr 2022 13:08:19 +0300 Subject: [PATCH 2/2] [DE] For Bug 55810 --- apps/documenteditor/main/app/controller/Navigation.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/apps/documenteditor/main/app/controller/Navigation.js b/apps/documenteditor/main/app/controller/Navigation.js index f528e131e..b36373da3 100644 --- a/apps/documenteditor/main/app/controller/Navigation.js +++ b/apps/documenteditor/main/app/controller/Navigation.js @@ -112,6 +112,12 @@ define([ panelNavigation.viewNavigationList.on('item:add', _.bind(this.onItemAdd, this)); panelNavigation.navigationMenu.on('item:click', _.bind(this.onMenuItemClick, this)); panelNavigation.navigationMenu.items[11].menu.on('item:click', _.bind(this.onMenuLevelsItemClick, this)); + + var viewport = this.getApplication().getController('Viewport').getView('Viewport'); + viewport.hlayout.on('layout:resizedrag', function () { + if (panelNavigation.viewNavigationList && panelNavigation.viewNavigationList.scroller) + panelNavigation.viewNavigationList.scroller.update({alwaysVisibleY: true}); + }); }, updateNavigation: function() {