[DE] Change add style menu item
This commit is contained in:
parent
6429da5c5a
commit
b50bff460e
|
@ -111,7 +111,7 @@ define([
|
|||
tagName : 'li',
|
||||
|
||||
template: _.template([
|
||||
'<a id="<%= id %>" style="<%= style %>" <% if(options.canFocused) { %> tabindex="-1" type="menuitem" <% }; if(!_.isUndefined(options.stopPropagation)) { %> data-stopPropagation="true" <% }; if(!_.isUndefined(options.dataHint)) { %> data-hint="<%= options.dataHint %>" <% }; if(!_.isUndefined(options.dataHintDirection)) { %> data-hint-direction="<%= options.dataHintDirection %>" <% }; if(!_.isUndefined(options.dataHintOffset)) { %> data-hint-offset="<%= options.dataHintOffset %>" <% }; %> >',
|
||||
'<a id="<%= id %>" style="<%= style %>" class="<%= options.cls %>" <% if(options.canFocused) { %> tabindex="-1" type="menuitem" <% }; if(!_.isUndefined(options.stopPropagation)) { %> data-stopPropagation="true" <% }; if(!_.isUndefined(options.dataHint)) { %> data-hint="<%= options.dataHint %>" <% }; if(!_.isUndefined(options.dataHintDirection)) { %> data-hint-direction="<%= options.dataHintDirection %>" <% }; if(!_.isUndefined(options.dataHintOffset)) { %> data-hint-offset="<%= options.dataHintOffset %>" <% }; %> >',
|
||||
'<% if (!_.isEmpty(iconCls)) { %>',
|
||||
'<span class="menu-item-icon <%= iconCls %>"></span>',
|
||||
'<% } %>',
|
||||
|
|
|
@ -358,7 +358,8 @@ define([
|
|||
Common.Gateway.on('setmailmergerecipients', _.bind(this.setMailMergeRecipients, this));
|
||||
$('#id-toolbar-menu-new-control-color').on('click', _.bind(this.onNewControlsColor, this));
|
||||
|
||||
$('#id-save-style-plus, #id-save-style-link', toolbar.$el).on('click', this.onMenuSaveStyle.bind(this));
|
||||
// $('#id-save-style-plus, #id-save-style-link', toolbar.$el).on('click', this.onMenuSaveStyle.bind(this));
|
||||
toolbar.listStylesAdditionalMenuItem.on('click', this.onMenuSaveStyle.bind(this));
|
||||
|
||||
this.onSetupCopyStyleButton();
|
||||
this.onBtnChangeState('undo:disabled', toolbar.btnUndo, toolbar.btnUndo.isDisabled());
|
||||
|
|
|
@ -1283,11 +1283,14 @@ define([
|
|||
this.paragraphControls.push(this.cmbFontName);
|
||||
|
||||
this.listStylesAdditionalMenuItem = new Common.UI.MenuItem({
|
||||
template: _.template(
|
||||
'<div id="id-save-style-container" class = "save-style-container">' +
|
||||
'<span id="id-save-style-plus" class="plus img-commonctrl" ></span>' +
|
||||
'<label id="id-save-style-link" class="save-style-link" >' + me.textStyleMenuNew + '</label>' +
|
||||
'</div>')
|
||||
cls: 'save-style-container',
|
||||
iconCls: 'menu__icon btn-zoomup',
|
||||
caption: me.textStyleMenuNew
|
||||
// template: _.template(
|
||||
// '<div id="id-save-style-container" class = "save-style-container">' +
|
||||
// '<span id="id-save-style-plus" class="plus img-commonctrl" ></span>' +
|
||||
// '<label id="id-save-style-link" class="save-style-link" >' + me.textStyleMenuNew + '</label>' +
|
||||
// '</div>')
|
||||
});
|
||||
|
||||
this.listStyles = new Common.UI.ComboDataView({
|
||||
|
|
|
@ -152,9 +152,10 @@
|
|||
}
|
||||
|
||||
.save-style-container {
|
||||
cursor: default;
|
||||
position: relative;
|
||||
padding: 14px 11px;
|
||||
//cursor: default;
|
||||
//position: relative;
|
||||
//padding: 14px 11px;
|
||||
padding: 14px 20px !important;
|
||||
border-left: @scaled-one-px-value-ie solid @border-regular-control-ie;
|
||||
border-left: @scaled-one-px-value solid @border-regular-control;
|
||||
border-top: @scaled-one-px-value-ie solid @border-regular-control-ie;
|
||||
|
|
Loading…
Reference in a new issue