',
- '
',
- '
',
+ '
',
@@ -76,12 +81,7 @@ define(['text!presentationeditor/main/app/template/HeaderFooterDialog.template',
'
',
'
',
'
',
- '
',
- ''
+ '
'
].join('')
)({
scope: this
diff --git a/apps/presentationeditor/main/resources/less/rightmenu.less b/apps/presentationeditor/main/resources/less/rightmenu.less
index fd60a2476d..050b94e989 100644
--- a/apps/presentationeditor/main/resources/less/rightmenu.less
+++ b/apps/presentationeditor/main/resources/less/rightmenu.less
@@ -1,7 +1,4 @@
-.settings-panel {
-}
-
.right-panel .settings-panel {
label.input-label{
vertical-align: baseline;
diff --git a/apps/spreadsheeteditor/main/app/view/ChartDataDialog.js b/apps/spreadsheeteditor/main/app/view/ChartDataDialog.js
index 784ec2b9f5..ee5dcd1599 100644
--- a/apps/spreadsheeteditor/main/app/view/ChartDataDialog.js
+++ b/apps/spreadsheeteditor/main/app/view/ChartDataDialog.js
@@ -57,10 +57,10 @@ define([
_.extend(this.options, {
title: this.textTitle,
- template: [
- '
',
- '
',
- '
',
+ contentStyle: 'padding: 0 10px;',
+ contentTemplate: _.template([
+ '
',
+ '
',
'
',
'',
'| ',
@@ -106,11 +106,8 @@ define([
' | ',
'
',
'
',
- '
',
- '
',
- '
',
- '
'
- ].join('')
+ '
'
+ ].join(''))({scope: this})
}, options);
this.handler = options.handler;
diff --git a/apps/spreadsheeteditor/main/app/view/ChartTypeDialog.js b/apps/spreadsheeteditor/main/app/view/ChartTypeDialog.js
index e52fe6ed18..02359e91e1 100644
--- a/apps/spreadsheeteditor/main/app/view/ChartTypeDialog.js
+++ b/apps/spreadsheeteditor/main/app/view/ChartTypeDialog.js
@@ -69,7 +69,8 @@ define([
SSE.Views.ChartTypeDialog = Common.Views.AdvancedSettingsWindow.extend(_.extend({
options: {
contentWidth: 370,
- contentHeight: 300
+ contentHeight: 300,
+ separator: false
},
initialize : function(options) {
@@ -77,10 +78,10 @@ define([
_.extend(this.options, {
title: this.textTitle,
- template: [
- '
',
- '
',
- '
',
+ contentStyle: 'padding: 0 10px;',
+ contentTemplate: _.template([
+ '
',
+ '
',
'
',
'',
'| ',
@@ -100,10 +101,8 @@ define([
' | ',
'
',
'
',
- '
',
- '
',
- '
'
- ].join('')
+ '
'
+ ].join(''))({scope: this})
}, options);
this.handler = options.handler;
diff --git a/apps/spreadsheeteditor/main/app/view/CreatePivotDialog.js b/apps/spreadsheeteditor/main/app/view/CreatePivotDialog.js
index 6126f40b4a..77b1623c25 100644
--- a/apps/spreadsheeteditor/main/app/view/CreatePivotDialog.js
+++ b/apps/spreadsheeteditor/main/app/view/CreatePivotDialog.js
@@ -47,6 +47,7 @@ define([
SSE.Views.CreatePivotDialog = Common.Views.AdvancedSettingsWindow.extend(_.extend({
options: {
contentWidth: 310,
+ separator: false,
id: 'window-create-pivot'
},
@@ -55,10 +56,10 @@ define([
_.extend(this.options, {
title: this.textTitle,
- template: [
- '
',
- '
',
- '
',
+ contentStyle: 'padding: 0 10px;',
+ contentTemplate: _.template([
+ '
',
+ '
',
'
',
'',
'| ',
@@ -91,10 +92,8 @@ define([
' | ',
'
',
'
',
- '
',
- '
',
- '
'
- ].join('')
+ '
'
+ ].join(''))({scope: this})
}, options);
this.api = options.api;
diff --git a/apps/spreadsheeteditor/main/app/view/CreateSparklineDialog.js b/apps/spreadsheeteditor/main/app/view/CreateSparklineDialog.js
index c573b152b0..0e8c2e50be 100644
--- a/apps/spreadsheeteditor/main/app/view/CreateSparklineDialog.js
+++ b/apps/spreadsheeteditor/main/app/view/CreateSparklineDialog.js
@@ -45,7 +45,8 @@ define([
SSE.Views.CreateSparklineDialog = Common.Views.AdvancedSettingsWindow.extend(_.extend({
options: {
- contentWidth: 310
+ contentWidth: 310,
+ separator: false
},
initialize : function(options) {
@@ -53,10 +54,10 @@ define([
_.extend(this.options, {
title: this.textTitle,
- template: [
- '
',
- '
',
- '
',
+ contentStyle: 'padding: 0 10px;',
+ contentTemplate: _.template([
+ '
',
+ '
',
'
',
'',
'| ',
@@ -79,10 +80,8 @@ define([
' | ',
'
',
'
',
- '
',
- '
',
- '
'
- ].join('')
+ '
'
+ ].join(''))({scope: this})
}, options);
this.api = options.api;
diff --git a/apps/spreadsheeteditor/main/app/view/ExternalLinksDlg.js b/apps/spreadsheeteditor/main/app/view/ExternalLinksDlg.js
index 75faef28e9..2ff0c37aae 100644
--- a/apps/spreadsheeteditor/main/app/view/ExternalLinksDlg.js
+++ b/apps/spreadsheeteditor/main/app/view/ExternalLinksDlg.js
@@ -51,17 +51,18 @@ define([
options: {
alias: 'ExternalLinksDlg',
contentWidth: 500,
- buttons: null
+ separator: false,
+ buttons: ['close']
},
initialize: function (options) {
var me = this;
_.extend(this.options, {
title: this.txtTitle,
- template: [
- '
',
- '
',
- '
',
+ contentStyle: 'padding: 0;',
+ contentTemplate: _.template([
+ '
',
+ '
',
'
',
'',
'| ',
@@ -77,13 +78,8 @@ define([
' | ',
'
',
'
',
- '
',
- '
',
- '
',
- ''
- ].join('')
+ '
'
+ ].join(''))({scope: this})
}, options);
this.api = options.api;
diff --git a/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js b/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js
index 6042ea2f36..27a2af9911 100644
--- a/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js
+++ b/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js
@@ -1835,7 +1835,7 @@ define([
'
| ',
'',
'
',
- ' | | ',
+ ' | | ',
'
',
'