diff --git a/apps/documenteditor/main/app/view/FileMenuPanels.js b/apps/documenteditor/main/app/view/FileMenuPanels.js index a67ab13cd2..90279e8439 100644 --- a/apps/documenteditor/main/app/view/FileMenuPanels.js +++ b/apps/documenteditor/main/app/view/FileMenuPanels.js @@ -869,8 +869,8 @@ define([ template: _.template([ '

<%= scope.txtCreateNew %>

', '
', - '
', - '
', + '
', + '
', '', '
', '
<%= scope.titleText(scope.fromBlankText) %>
', @@ -909,7 +909,7 @@ define([ docs: this.options[0].docs })); var docs=[{title: this.fromBlankText}].concat(this.options[0].docs); - var thumbsElm= this.$el.find('.thumb-wrap'); + var thumbsElm= this.$el.find('.thumb-wrap, .blank-document'); _.each(thumbsElm, function (tmb, index){ $(tmb).find('.title').tooltip({ title : docs[index].title, diff --git a/apps/documenteditor/main/resources/less/filemenu.less b/apps/documenteditor/main/resources/less/filemenu.less index 98699bcb41..f7c38040bf 100644 --- a/apps/documenteditor/main/resources/less/filemenu.less +++ b/apps/documenteditor/main/resources/less/filemenu.less @@ -162,9 +162,7 @@ white-space: nowrap; } - .blank-document { - min-width: 650px; - } + .blank-document-info { vertical-align: top; @@ -178,11 +176,6 @@ } } - .blank-document-btn { - width: 96px; - height: 96px; - cursor: pointer; - } hr { margin: 0; @@ -192,8 +185,8 @@ } .thumb-list { - - .thumb-wrap { + max-width: 600px; + .thumb-wrap, .blank-document { display: inline-block; text-align: center; width: auto; @@ -201,7 +194,7 @@ vertical-align: top; .border-radius(@border-radius-small); - .thumb { + .thumb, .blank-document-btn { width: 96px; height: 96px; background-repeat: no-repeat; diff --git a/apps/presentationeditor/main/app/view/FileMenuPanels.js b/apps/presentationeditor/main/app/view/FileMenuPanels.js index 9209a99a34..d29c15caf4 100644 --- a/apps/presentationeditor/main/app/view/FileMenuPanels.js +++ b/apps/presentationeditor/main/app/view/FileMenuPanels.js @@ -767,8 +767,8 @@ define([ template: _.template([ '

<%= scope.txtCreateNew %>

', '
', - '
', - '
', + '
', + '
', '', '
', '
<%= scope.titleText(scope.fromBlankText) %>
', @@ -807,7 +807,7 @@ define([ docs: this.options[0].docs })); var docs=[{title: this.fromBlankText}].concat(this.options[0].docs); - var thumbsElm= this.$el.find('.thumb-wrap'); + var thumbsElm= this.$el.find('.thumb-wrap, .blank-document'); _.each(thumbsElm, function (tmb, index){ $(tmb).find('.title').tooltip({ title : docs[index].title, diff --git a/apps/presentationeditor/main/resources/less/leftmenu.less b/apps/presentationeditor/main/resources/less/leftmenu.less index 1836390310..2771668e22 100644 --- a/apps/presentationeditor/main/resources/less/leftmenu.less +++ b/apps/presentationeditor/main/resources/less/leftmenu.less @@ -199,10 +199,6 @@ white-space: nowrap; } - .blank-document { - min-width: 650px; - } - .blank-document-info { vertical-align: top; width: 445px; @@ -215,12 +211,6 @@ } } - .blank-document-btn { - width: 96px; - height: 96px; - cursor: pointer; - } - hr { margin: 0; border-bottom: none; @@ -229,8 +219,8 @@ } .thumb-list { - - .thumb-wrap { + max-width: 600px; + .thumb-wrap, .blank-document { display: inline-block; text-align: center; width: auto; @@ -238,7 +228,7 @@ vertical-align: top; .border-radius(@border-radius-small); - .thumb { + .thumb, .blank-document-btn { width: 96px; height: 96px; background-repeat: no-repeat; diff --git a/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js b/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js index 2185dded41..6260695cbe 100644 --- a/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js +++ b/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js @@ -1734,8 +1734,8 @@ define([ template: _.template([ '

<%= scope.txtCreateNew %>

', '
', - '
', - '
', + '
', + '
', '', '
', '
<%= scope.titleText(scope.fromBlankText) %>
', @@ -1774,7 +1774,7 @@ define([ docs: this.options[0].docs })); var docs=[{title: this.fromBlankText}].concat(this.options[0].docs); - var thumbsElm= this.$el.find('.thumb-wrap'); + var thumbsElm= this.$el.find('.thumb-wrap, .blank-document'); _.each(thumbsElm, function (tmb, index){ $(tmb).find('.title').tooltip({ title : docs[index].title, diff --git a/apps/spreadsheeteditor/main/resources/less/leftmenu.less b/apps/spreadsheeteditor/main/resources/less/leftmenu.less index 447896dc96..a312169ff4 100644 --- a/apps/spreadsheeteditor/main/resources/less/leftmenu.less +++ b/apps/spreadsheeteditor/main/resources/less/leftmenu.less @@ -267,10 +267,6 @@ white-space: nowrap; } - .blank-document { - min-width: 650px; - } - .blank-document-info { vertical-align: top; width: 445px; @@ -283,12 +279,6 @@ } } - .blank-document-btn { - width: 96px; - height: 96px; - cursor: pointer; - } - hr { margin: 0; border-bottom: none; @@ -297,8 +287,8 @@ } .thumb-list { - - .thumb-wrap { + max-width: 600px; + .thumb-wrap, .blank-document { display: inline-block; text-align: center; width: auto; @@ -306,7 +296,7 @@ vertical-align: top; .border-radius(@border-radius-small); - .thumb { + .thumb, .blank-document-btn { width: 96px; height: 96px; background-repeat: no-repeat;