From 28eb8cac5491c4e3c41001b39b1669c0c0ec9a5d Mon Sep 17 00:00:00 2001 From: OVSharova Date: Fri, 25 Feb 2022 14:31:23 +0300 Subject: [PATCH 1/2] add menuCls --- apps/presentationeditor/main/app/view/FileMenuPanels.js | 4 ++++ apps/spreadsheeteditor/main/app/view/FileMenuPanels.js | 3 +++ 2 files changed, 7 insertions(+) diff --git a/apps/presentationeditor/main/app/view/FileMenuPanels.js b/apps/presentationeditor/main/app/view/FileMenuPanels.js index 0781577a4..80feff5ad 100644 --- a/apps/presentationeditor/main/app/view/FileMenuPanels.js +++ b/apps/presentationeditor/main/app/view/FileMenuPanels.js @@ -321,6 +321,7 @@ define([ el : $markup.findById('#fms-cmb-zoom'), style : 'width: 128px;', editable : false, + menuCls : 'menu-aligned', cls : 'input-group-nr', menuStyle : 'max-height: 157px;', data : [ @@ -404,6 +405,7 @@ define([ el : $markup.findById('#fms-cmb-font-render'), style : 'width: 128px;', editable : false, + menuCls : 'menu-aligned', cls : 'input-group-nr', itemsTemplate: itemsTemplate, data : [ @@ -422,6 +424,7 @@ define([ el : $markup.findById('#fms-cmb-unit'), style : 'width: 128px;', editable : false, + menuCls : 'menu-aligned', cls : 'input-group-nr', data : [ { value: Common.Utils.Metric.c_MetricUnits['cm'], displayValue: this.txtCm }, @@ -475,6 +478,7 @@ define([ el : $markup.findById('#fms-cmb-theme'), style : 'width: 128px;', editable : false, + menuCls : 'menu-aligned', cls : 'input-group-nr', dataHint : '2', dataHintDirection: 'bottom', diff --git a/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js b/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js index 80cbeaee3..fa6694dd0 100644 --- a/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js +++ b/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js @@ -487,6 +487,7 @@ define([ style : 'width: 200px;', menuStyle: 'max-height: 185px;', editable : false, + menuCls : 'menu-aligned', cls : 'input-group-nr', data : formula_arr, dataHint : '2', @@ -509,6 +510,7 @@ define([ el : $markup.findById('#fms-cmb-reg-settings'), style : 'width: 200px;', menuStyle: 'max-height: 185px;', + menuCls : 'menu-aligned', editable : false, cls : 'input-group-nr', data : regdata, @@ -631,6 +633,7 @@ define([ el : $markup.findById('#fms-cmb-theme'), style : 'width: 128px;', editable : false, + menuCls : 'menu-aligned', cls : 'input-group-nr', dataHint : '2', dataHintDirection: 'bottom', From 8460de31ad29430579ce37300b1dada4bd3c8db4 Mon Sep 17 00:00:00 2001 From: OVSharova Date: Tue, 1 Mar 2022 15:59:21 +0300 Subject: [PATCH 2/2] Update view --- .../main/app/view/FileMenuPanels.js | 16 ++++++++----- .../main/app/view/FileMenuPanels.js | 16 ++++++++----- .../main/app/view/FileMenuPanels.js | 24 +++++++++++-------- 3 files changed, 34 insertions(+), 22 deletions(-) diff --git a/apps/documenteditor/main/app/view/FileMenuPanels.js b/apps/documenteditor/main/app/view/FileMenuPanels.js index 3e23070ac..f8929c1ce 100644 --- a/apps/documenteditor/main/app/view/FileMenuPanels.js +++ b/apps/documenteditor/main/app/view/FileMenuPanels.js @@ -441,11 +441,11 @@ define([ this.cmbZoom = new Common.UI.ComboBox({ el : $markup.findById('#fms-cmb-zoom'), - style : 'width: 128px;', + style : 'width: 160px;', editable : false, menuCls : 'menu-aligned', cls : 'input-group-nr', - menuStyle : 'max-height: 157px;', + menuStyle : 'min-width:100%; max-height: 157px;', data : [ { value: -1, displayValue: this.txtFitPage }, { value: -2, displayValue: this.txtFitWidth }, @@ -544,9 +544,10 @@ define([ ].join('')); this.cmbFontRender = new Common.UI.ComboBox({ el : $markup.find('#fms-cmb-font-render'), - style : 'width: 128px;', + style : 'width: 160px;', editable : false, menuCls : 'menu-aligned', + menuStyle : 'min-width:100%;', cls : 'input-group-nr', itemsTemplate: itemsTemplate, data : [ @@ -563,8 +564,9 @@ define([ this.cmbUnit = new Common.UI.ComboBox({ el : $markup.findById('#fms-cmb-unit'), - style : 'width: 128px;', + style : 'width: 160px;', menuCls : 'menu-aligned', + menuStyle : 'min-width:100%;', editable : false, cls : 'input-group-nr', data : [ @@ -579,9 +581,10 @@ define([ this.cmbMacros = new Common.UI.ComboBox({ el : $markup.findById('#fms-cmb-macros'), - style : 'width: 128px;', + style : 'width: 160px;', editable : false, menuCls : 'menu-aligned', + menuStyle : 'min-width:100%;', cls : 'input-group-nr', data : [ { value: 2, displayValue: this.txtStopMacros, descValue: this.txtStopMacrosDesc }, @@ -614,7 +617,8 @@ define([ this.cmbTheme = new Common.UI.ComboBox({ el : $markup.findById('#fms-cmb-theme'), - style : 'width: 128px;', + style : 'width: 160px;', + menuStyle : 'min-width:100%;', editable : false, menuCls : 'menu-aligned', cls : 'input-group-nr', diff --git a/apps/presentationeditor/main/app/view/FileMenuPanels.js b/apps/presentationeditor/main/app/view/FileMenuPanels.js index 80feff5ad..a566631be 100644 --- a/apps/presentationeditor/main/app/view/FileMenuPanels.js +++ b/apps/presentationeditor/main/app/view/FileMenuPanels.js @@ -319,11 +319,11 @@ define([ this.cmbZoom = new Common.UI.ComboBox({ el : $markup.findById('#fms-cmb-zoom'), - style : 'width: 128px;', + style : 'width: 160px;', editable : false, menuCls : 'menu-aligned', cls : 'input-group-nr', - menuStyle : 'max-height: 157px;', + menuStyle : 'min-width:100%; max-height: 157px;', data : [ { value: -1, displayValue: this.txtFitSlide }, { value: -2, displayValue: this.txtFitWidth }, @@ -403,9 +403,10 @@ define([ ].join('')); this.cmbFontRender = new Common.UI.ComboBox({ el : $markup.findById('#fms-cmb-font-render'), - style : 'width: 128px;', + style : 'width: 160px;', editable : false, menuCls : 'menu-aligned', + menuStyle : 'min-width:100%;', cls : 'input-group-nr', itemsTemplate: itemsTemplate, data : [ @@ -422,9 +423,10 @@ define([ this.cmbUnit = new Common.UI.ComboBox({ el : $markup.findById('#fms-cmb-unit'), - style : 'width: 128px;', + style : 'width: 160px;', editable : false, menuCls : 'menu-aligned', + menuStyle : 'min-width:100%;', cls : 'input-group-nr', data : [ { value: Common.Utils.Metric.c_MetricUnits['cm'], displayValue: this.txtCm }, @@ -438,9 +440,10 @@ define([ this.cmbMacros = new Common.UI.ComboBox({ el : $markup.findById('#fms-cmb-macros'), - style : 'width: 128px;', + style : 'width: 160px;', editable : false, menuCls : 'menu-aligned', + menuStyle : 'min-width:100%;', cls : 'input-group-nr', data : [ { value: 2, displayValue: this.txtStopMacros, descValue: this.txtStopMacrosDesc }, @@ -476,9 +479,10 @@ define([ this.cmbTheme = new Common.UI.ComboBox({ el : $markup.findById('#fms-cmb-theme'), - style : 'width: 128px;', + style : 'width: 160px;', editable : false, menuCls : 'menu-aligned', + menuStyle : 'min-width:100%;', cls : 'input-group-nr', dataHint : '2', dataHintDirection: 'bottom', diff --git a/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js b/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js index fa6694dd0..82cd63734 100644 --- a/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js +++ b/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js @@ -305,7 +305,7 @@ define([ '', '', '', - '', + '', '', '', '', @@ -383,11 +383,11 @@ define([ this.cmbZoom = new Common.UI.ComboBox({ el : $markup.findById('#fms-cmb-zoom'), - style : 'width: 128px;', + style : 'width: 160px;', editable : false, menuCls : 'menu-aligned', cls : 'input-group-nr', - menuStyle : 'max-height: 157px;', + menuStyle : 'min-width:100%; max-height: 157px;', data : [ { value: 50, displayValue: "50%" }, { value: 60, displayValue: "60%" }, @@ -417,10 +417,11 @@ define([ ].join('')); this.cmbFontRender = new Common.UI.ComboBox({ el : $markup.findById('#fms-cmb-font-render'), - style : 'width: 128px;', + style : 'width: 160px;', editable : false, menuCls : 'menu-aligned', cls : 'input-group-nr', + menuStyle : 'min-width:100%;', itemsTemplate: itemsTemplate, data : [ { value: Asc.c_oAscFontRenderingModeType.hintingAndSubpixeling, displayValue: this.txtWin }, @@ -456,9 +457,10 @@ define([ this.cmbUnit = new Common.UI.ComboBox({ el : $markup.findById('#fms-cmb-unit'), - style : 'width: 128px;', + style : 'width: 160px;', editable : false, menuCls : 'menu-aligned', + menuStyle : 'min-width:100%;', cls : 'input-group-nr', data : [ { value: Common.Utils.Metric.c_MetricUnits['cm'], displayValue: this.txtCm }, @@ -485,7 +487,7 @@ define([ this.cmbFuncLocale = new Common.UI.ComboBox({ el : $markup.findById('#fms-cmb-func-locale'), style : 'width: 200px;', - menuStyle: 'max-height: 185px;', + menuStyle : 'min-width:100%; max-height: 185px;', editable : false, menuCls : 'menu-aligned', cls : 'input-group-nr', @@ -509,7 +511,7 @@ define([ this.cmbRegSettings = new Common.UI.ComboBox({ el : $markup.findById('#fms-cmb-reg-settings'), style : 'width: 200px;', - menuStyle: 'max-height: 185px;', + menuStyle : 'min-width:100%; max-height: 185px;', menuCls : 'menu-aligned', editable : false, cls : 'input-group-nr', @@ -600,9 +602,10 @@ define([ this.cmbMacros = new Common.UI.ComboBox({ el : $markup.findById('#fms-cmb-macros'), - style : 'width: 128px;', + style : 'width: 160px;', editable : false, menuCls : 'menu-aligned', + menuStyle : 'min-width:100%;', cls : 'input-group-nr', data : [ { value: 2, displayValue: this.txtStopMacros, descValue: this.txtStopMacrosDesc }, @@ -631,9 +634,10 @@ define([ this.cmbTheme = new Common.UI.ComboBox({ el : $markup.findById('#fms-cmb-theme'), - style : 'width: 128px;', + style : 'width: 160px;', editable : false, menuCls : 'menu-aligned', + menuStyle : 'min-width:100%;', cls : 'input-group-nr', dataHint : '2', dataHintDirection: 'bottom', @@ -646,7 +650,7 @@ define([ style: 'width: 200px;', editable: false, menuCls : 'menu-aligned', - menuStyle: 'min-width: 267px; max-height: 209px;', + menuStyle: 'min-width: 100%; max-height: 209px;', dataHint: '2', dataHintDirection: 'bottom', dataHintOffset: 'big'