diff --git a/apps/spreadsheeteditor/main/app/template/ProtectRangesDlg.template b/apps/spreadsheeteditor/main/app/template/ProtectRangesDlg.template index a4dfc88b41..2ea6064965 100644 --- a/apps/spreadsheeteditor/main/app/template/ProtectRangesDlg.template +++ b/apps/spreadsheeteditor/main/app/template/ProtectRangesDlg.template @@ -1,9 +1,6 @@
| - | |||
|
diff --git a/apps/spreadsheeteditor/main/app/view/ChartDataDialog.js b/apps/spreadsheeteditor/main/app/view/ChartDataDialog.js
index b084423e47..3b66531484 100644
--- a/apps/spreadsheeteditor/main/app/view/ChartDataDialog.js
+++ b/apps/spreadsheeteditor/main/app/view/ChartDataDialog.js
@@ -52,7 +52,7 @@ define([
_.extend(this.options, {
title: this.textTitle,
- contentStyle: 'padding: 0 10px;',
+ contentStyle: 'padding: 5px 5px 0;',
contentTemplate: _.template([
' ',
' ',
diff --git a/apps/spreadsheeteditor/main/app/view/ChartTypeDialog.js b/apps/spreadsheeteditor/main/app/view/ChartTypeDialog.js
index 87aca4b2c5..dc5129df60 100644
--- a/apps/spreadsheeteditor/main/app/view/ChartTypeDialog.js
+++ b/apps/spreadsheeteditor/main/app/view/ChartTypeDialog.js
@@ -74,7 +74,7 @@ define([
_.extend(this.options, {
title: this.textTitle,
- contentStyle: 'padding: 0 10px;',
+ contentStyle: 'padding: 5px 5px 0;',
contentTemplate: _.template([
' ',
' ',
diff --git a/apps/spreadsheeteditor/main/app/view/CreatePivotDialog.js b/apps/spreadsheeteditor/main/app/view/CreatePivotDialog.js
index 85bedaaa8c..8e2d42587e 100644
--- a/apps/spreadsheeteditor/main/app/view/CreatePivotDialog.js
+++ b/apps/spreadsheeteditor/main/app/view/CreatePivotDialog.js
@@ -52,7 +52,7 @@ define([
_.extend(this.options, {
title: this.textTitle,
- contentStyle: 'padding: 0 10px;',
+ contentStyle: 'padding: 5px 5px 0;',
contentTemplate: _.template([
' ',
' ',
diff --git a/apps/spreadsheeteditor/main/app/view/CreateSparklineDialog.js b/apps/spreadsheeteditor/main/app/view/CreateSparklineDialog.js
index 8dc8988433..26b544870e 100644
--- a/apps/spreadsheeteditor/main/app/view/CreateSparklineDialog.js
+++ b/apps/spreadsheeteditor/main/app/view/CreateSparklineDialog.js
@@ -51,7 +51,7 @@ define([
_.extend(this.options, {
title: this.textTitle,
- contentStyle: 'padding: 0 10px;',
+ contentStyle: 'padding: 5px 5px 0;',
contentTemplate: _.template([
' ',
' ',
diff --git a/apps/spreadsheeteditor/main/app/view/ExternalLinksDlg.js b/apps/spreadsheeteditor/main/app/view/ExternalLinksDlg.js
index ebf5a4ed44..e47419bf6a 100644
--- a/apps/spreadsheeteditor/main/app/view/ExternalLinksDlg.js
+++ b/apps/spreadsheeteditor/main/app/view/ExternalLinksDlg.js
@@ -57,7 +57,7 @@ define([
var me = this;
_.extend(this.options, {
title: this.txtTitle,
- contentStyle: 'padding: 0;',
+ contentStyle: 'padding: 10px 0 0;',
contentTemplate: _.template([
' ',
' ',
diff --git a/apps/spreadsheeteditor/main/app/view/FillSeriesDialog.js b/apps/spreadsheeteditor/main/app/view/FillSeriesDialog.js
index ee9a14726c..08508a19c7 100644
--- a/apps/spreadsheeteditor/main/app/view/FillSeriesDialog.js
+++ b/apps/spreadsheeteditor/main/app/view/FillSeriesDialog.js
@@ -52,7 +52,7 @@ define([
_.extend(this.options, {
title: this.textTitle,
- contentStyle: 'padding: 0 5px;',
+ contentStyle: 'padding: 5px;',
contentTemplate: _.template([
' ',
' ',
diff --git a/apps/spreadsheeteditor/main/app/view/FormatRulesEditDlg.js b/apps/spreadsheeteditor/main/app/view/FormatRulesEditDlg.js
index cf7c9afec7..d230780c6f 100644
--- a/apps/spreadsheeteditor/main/app/view/FormatRulesEditDlg.js
+++ b/apps/spreadsheeteditor/main/app/view/FormatRulesEditDlg.js
@@ -57,7 +57,7 @@ define([
_.extend(this.options, {
title: this.txtTitleNew,
- contentStyle: 'padding: 0;',
+ contentStyle: 'padding: 5px 0 0;',
contentTemplate: _.template(contentTemplate)({scope: this})
}, options);
@@ -1486,7 +1486,7 @@ define([
(cmbData.length>0) && this.cmbRule.setValue((ruleType!==undefined) ? ruleType : cmbData[0].value);
}
this.setControls(index, this.cmbRule.getValue());
- this.setInnerHeight(index==9 ? 360 : 280);
+ this.setInnerHeight(index==9 ? 370 : 280);
if (rec) {
var type = rec.get('type');
diff --git a/apps/spreadsheeteditor/main/app/view/FormatRulesManagerDlg.js b/apps/spreadsheeteditor/main/app/view/FormatRulesManagerDlg.js
index 7462c28269..2653676cb6 100644
--- a/apps/spreadsheeteditor/main/app/view/FormatRulesManagerDlg.js
+++ b/apps/spreadsheeteditor/main/app/view/FormatRulesManagerDlg.js
@@ -94,7 +94,7 @@ define([
var me = this;
_.extend(this.options, {
title: this.txtTitle,
- contentStyle: 'padding: 0;',
+ contentStyle: 'padding: 5px 0 0;',
contentTemplate: _.template(contentTemplate)({scope: this})
}, options);
diff --git a/apps/spreadsheeteditor/main/app/view/FormatSettingsDialog.js b/apps/spreadsheeteditor/main/app/view/FormatSettingsDialog.js
index 54ad0155b4..7214c777bb 100644
--- a/apps/spreadsheeteditor/main/app/view/FormatSettingsDialog.js
+++ b/apps/spreadsheeteditor/main/app/view/FormatSettingsDialog.js
@@ -44,7 +44,7 @@ define([
SSE.Views.FormatSettingsDialog = Common.Views.AdvancedSettingsWindow.extend(_.extend({
options: {
contentWidth: 284,
- contentHeight: 255
+ contentHeight: 260
},
initialize : function(options) {
@@ -84,11 +84,11 @@ define([
this.props = options.props;
this.linked = options.linked || false;
- var height = this.linked ? 275 : 255;
+ var height = this.linked ? 275 : 260;
_.extend(this.options, {
title: this.textTitle,
contentHeight: height,
- contentStyle: 'padding: 0 10px;',
+ contentStyle: 'padding: 5px;',
contentTemplate: _.template([
' ',
' ',
diff --git a/apps/spreadsheeteditor/main/app/view/GoalSeekDlg.js b/apps/spreadsheeteditor/main/app/view/GoalSeekDlg.js
index 91e1aff7b4..2784c851c5 100644
--- a/apps/spreadsheeteditor/main/app/view/GoalSeekDlg.js
+++ b/apps/spreadsheeteditor/main/app/view/GoalSeekDlg.js
@@ -52,7 +52,7 @@ define([
_.extend(this.options, {
title: this.textTitle,
- contentStyle: 'padding: 0 10px;',
+ contentStyle: 'padding: 5px 5px 0;',
contentTemplate: _.template([
' ',
' ',
diff --git a/apps/spreadsheeteditor/main/app/view/GoalSeekStatusDlg.js b/apps/spreadsheeteditor/main/app/view/GoalSeekStatusDlg.js
index b99591a6d9..afd0f5aea2 100644
--- a/apps/spreadsheeteditor/main/app/view/GoalSeekStatusDlg.js
+++ b/apps/spreadsheeteditor/main/app/view/GoalSeekStatusDlg.js
@@ -52,7 +52,7 @@ define([
_.extend(this.options, {
title: this.textTitle,
- contentStyle: 'padding: 0 10px;',
+ contentStyle: 'padding: 10px 10px 0;',
contentTemplate: _.template([
' ',
' ',
diff --git a/apps/spreadsheeteditor/main/app/view/HyperlinkSettingsDialog.js b/apps/spreadsheeteditor/main/app/view/HyperlinkSettingsDialog.js
index 7dd39e0e71..7a965d76c9 100644
--- a/apps/spreadsheeteditor/main/app/view/HyperlinkSettingsDialog.js
+++ b/apps/spreadsheeteditor/main/app/view/HyperlinkSettingsDialog.js
@@ -74,8 +74,8 @@ define([], function () { 'use strict';
' ',
diff --git a/apps/spreadsheeteditor/main/app/view/ImportFromXmlDialog.js b/apps/spreadsheeteditor/main/app/view/ImportFromXmlDialog.js
index f571f325e8..f1dc77764a 100644
--- a/apps/spreadsheeteditor/main/app/view/ImportFromXmlDialog.js
+++ b/apps/spreadsheeteditor/main/app/view/ImportFromXmlDialog.js
@@ -51,7 +51,7 @@ define([
_.extend(this.options, {
title: this.textTitle,
- contentStyle: 'padding: 0 10px;',
+ contentStyle: 'padding: 5px 5px 0;',
contentTemplate: _.template([
'',
'',
'',
' ',
'',
' ',
diff --git a/apps/spreadsheeteditor/main/app/view/NameManagerDlg.js b/apps/spreadsheeteditor/main/app/view/NameManagerDlg.js
index a3b998c9a3..2754c3b250 100644
--- a/apps/spreadsheeteditor/main/app/view/NameManagerDlg.js
+++ b/apps/spreadsheeteditor/main/app/view/NameManagerDlg.js
@@ -58,7 +58,7 @@ define([
var me = this;
_.extend(this.options, {
title: this.txtTitle,
- contentStyle: 'padding: 0;',
+ contentStyle: 'padding: 5px 0 0;',
contentTemplate: _.template(contentTemplate)({scope: this})
}, options);
diff --git a/apps/spreadsheeteditor/main/app/view/NamedRangeEditDlg.js b/apps/spreadsheeteditor/main/app/view/NamedRangeEditDlg.js
index b163de9de8..e2fe90db02 100644
--- a/apps/spreadsheeteditor/main/app/view/NamedRangeEditDlg.js
+++ b/apps/spreadsheeteditor/main/app/view/NamedRangeEditDlg.js
@@ -55,7 +55,7 @@ define([
_.extend(this.options, {
title: this.txtTitleNew,
- contentStyle: 'padding: 0;',
+ contentStyle: 'padding: 5px 0 0;',
contentTemplate: _.template([
' ',
' ',
diff --git a/apps/spreadsheeteditor/main/app/view/NamedRangePasteDlg.js b/apps/spreadsheeteditor/main/app/view/NamedRangePasteDlg.js
index 301c3026a8..06a886f22f 100644
--- a/apps/spreadsheeteditor/main/app/view/NamedRangePasteDlg.js
+++ b/apps/spreadsheeteditor/main/app/view/NamedRangePasteDlg.js
@@ -56,7 +56,7 @@ define([
_.extend(this.options, {
title: this.txtTitle,
- contentStyle: 'padding: 0;',
+ contentStyle: 'padding: 5px 0 0;',
contentTemplate: _.template([
' ',
' ',
diff --git a/apps/spreadsheeteditor/main/app/view/PivotShowDetailDialog.js b/apps/spreadsheeteditor/main/app/view/PivotShowDetailDialog.js
index 53d3bcdeb0..9f5925f1a5 100644
--- a/apps/spreadsheeteditor/main/app/view/PivotShowDetailDialog.js
+++ b/apps/spreadsheeteditor/main/app/view/PivotShowDetailDialog.js
@@ -56,7 +56,7 @@ define([
_.extend(this.options, {
title: this.txtTitle,
- contentStyle: 'padding: 0;',
+ contentStyle: 'padding: 5px 0 0;',
contentTemplate: _.template([
' ',
' ',
diff --git a/apps/spreadsheeteditor/main/app/view/ProtectRangesDlg.js b/apps/spreadsheeteditor/main/app/view/ProtectRangesDlg.js
index 9bbc2edad0..a8a183679b 100644
--- a/apps/spreadsheeteditor/main/app/view/ProtectRangesDlg.js
+++ b/apps/spreadsheeteditor/main/app/view/ProtectRangesDlg.js
@@ -57,7 +57,7 @@ define([
var me = this;
_.extend(this.options, {
title: this.txtTitle,
- contentStyle: 'padding: 0;',
+ contentStyle: 'padding: 5px 0 0;',
contentTemplate: _.template(contentTemplate)({scope: this})
}, options);
diff --git a/apps/spreadsheeteditor/main/app/view/ProtectedRangesManagerDlg.js b/apps/spreadsheeteditor/main/app/view/ProtectedRangesManagerDlg.js
index 8e8d3533fe..98381b0d2b 100644
--- a/apps/spreadsheeteditor/main/app/view/ProtectedRangesManagerDlg.js
+++ b/apps/spreadsheeteditor/main/app/view/ProtectedRangesManagerDlg.js
@@ -57,7 +57,7 @@ define([
var me = this;
_.extend(this.options, {
title: this.txtTitle,
- contentStyle: 'padding: 0;',
+ contentStyle: 'padding: 5px 0 0;',
contentTemplate: _.template(contentTemplate)({scope: this})
}, options);
diff --git a/apps/spreadsheeteditor/main/app/view/SortDialog.js b/apps/spreadsheeteditor/main/app/view/SortDialog.js
index d1ac465619..507ef2ad8f 100644
--- a/apps/spreadsheeteditor/main/app/view/SortDialog.js
+++ b/apps/spreadsheeteditor/main/app/view/SortDialog.js
@@ -79,7 +79,7 @@ define([
var me = this;
_.extend(this.options, {
title: this.txtTitle,
- contentStyle: 'padding: 0;',
+ contentStyle: 'padding: 5px 0 0;',
contentTemplate: _.template(contentTemplate)({scope: this})
}, options);
diff --git a/apps/spreadsheeteditor/main/app/view/SpecialPasteDialog.js b/apps/spreadsheeteditor/main/app/view/SpecialPasteDialog.js
index e1306a39ea..5f1c34c0ab 100644
--- a/apps/spreadsheeteditor/main/app/view/SpecialPasteDialog.js
+++ b/apps/spreadsheeteditor/main/app/view/SpecialPasteDialog.js
@@ -52,7 +52,7 @@ define([
_.extend(this.options, {
title: this.textTitle,
- contentStyle: 'padding: 0 5px;',
+ contentStyle: 'padding: 5px 5px 0;',
contentTemplate: _.template([
' ',
' ',
diff --git a/apps/spreadsheeteditor/main/app/view/ValueFieldSettingsDialog.js b/apps/spreadsheeteditor/main/app/view/ValueFieldSettingsDialog.js
index cc9712de17..cee22cf8d9 100644
--- a/apps/spreadsheeteditor/main/app/view/ValueFieldSettingsDialog.js
+++ b/apps/spreadsheeteditor/main/app/view/ValueFieldSettingsDialog.js
@@ -52,14 +52,14 @@ define([
_.extend(this.options, {
title: this.textTitle,
- contentStyle: 'padding: 0 10px;',
+ contentStyle: 'padding: 5px 5px 0;',
contentTemplate: _.template([
' ',
' ',
'
|