From 6cd1b4acd37ca45977be592ae170c681cf8b5fa7 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Thu, 7 Apr 2022 16:26:00 +0300 Subject: [PATCH] [DE] Add icons for navigation list --- apps/documenteditor/main/app/view/Navigation.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/apps/documenteditor/main/app/view/Navigation.js b/apps/documenteditor/main/app/view/Navigation.js index 80c7375c1..a62b11107 100644 --- a/apps/documenteditor/main/app/view/Navigation.js +++ b/apps/documenteditor/main/app/view/Navigation.js @@ -77,11 +77,14 @@ define([ }); this.viewNavigationList.cmpEl.off('click'); this.navigationMenu = new Common.UI.Menu({ + cls: 'shifted-right', items: [{ + iconCls : 'menu__icon promote', caption : this.txtPromote, value: 'promote' }, { + iconCls : 'menu__icon demote', caption : this.txtDemote, value: 'demote' }, @@ -104,6 +107,7 @@ define([ caption : '--' }, { + iconCls : 'menu__icon select-all', caption : this.txtSelect, value: 'select' }, @@ -111,10 +115,12 @@ define([ caption : '--' }, { + iconCls : 'menu__icon expand-all', caption : this.txtExpand, value: 'expand' }, { + iconCls : 'menu__icon collapse-all', caption : this.txtCollapse, value: 'collapse' },