[SSE] Changed border styles for cell in the toolbar.
This commit is contained in:
parent
581361b7d2
commit
cfd2b31b61
|
@ -517,7 +517,6 @@ define([
|
||||||
|
|
||||||
onBordersWidth: function(menu, item, state) {
|
onBordersWidth: function(menu, item, state) {
|
||||||
if (state) {
|
if (state) {
|
||||||
$('#id-toolbar-mnu-item-border-width .menu-item-icon').css('border-width', (item.value == 'thin' ? 1 : (item.value == 'medium' ? 2 : 3)) + 'px');
|
|
||||||
this.toolbar.btnBorders.options.borderswidth = item.value;
|
this.toolbar.btnBorders.options.borderswidth = item.value;
|
||||||
|
|
||||||
Common.NotificationCenter.trigger('edit:complete', this.toolbar);
|
Common.NotificationCenter.trigger('edit:complete', this.toolbar);
|
||||||
|
|
|
@ -1486,9 +1486,9 @@ define([
|
||||||
{caption: '--'},
|
{caption: '--'},
|
||||||
{
|
{
|
||||||
id : 'id-toolbar-mnu-item-border-width',
|
id : 'id-toolbar-mnu-item-border-width',
|
||||||
caption : this.textBordersWidth,
|
caption : this.textBordersStyle,
|
||||||
iconCls : 'mnu-icon-item mnu-border-width',
|
iconCls : 'mnu-icon-item mnu-border-width',
|
||||||
template : _.template('<a id="<%= id %>" tabindex="-1" type="menuitem"><span class="menu-item-icon" style="background-image: none; width: 11px; height: 11px; margin: 2px 7px 0 -9px; border-style: solid; border-width: 1px; border-color: #000;"></span><%= caption %></a>'),
|
template : _.template('<a id="<%= id %>" tabindex="-1" type="menuitem"><span class="menu-item-icon" style="background-image: none; width: 11px; height: 11px; margin: 2px 7px 0 -9px;"></span><%= caption %></a>'),
|
||||||
menu : (function(){
|
menu : (function(){
|
||||||
var itemTemplate = _.template('<a id="<%= id %>" tabindex="-1" type="menuitem"><div class="border-size-item" style="background-position: 0 -<%= options.offsety %>px;"></div></a>');
|
var itemTemplate = _.template('<a id="<%= id %>" tabindex="-1" type="menuitem"><div class="border-size-item" style="background-position: 0 -<%= options.offsety %>px;"></div></a>');
|
||||||
|
|
||||||
|
@ -1497,9 +1497,17 @@ define([
|
||||||
menuAlign : 'tl-tr',
|
menuAlign : 'tl-tr',
|
||||||
id : 'toolbar-menu-borders-width',
|
id : 'toolbar-menu-borders-width',
|
||||||
items: [
|
items: [
|
||||||
{ template: itemTemplate, stopPropagation: true, checkable: true, toggleGroup: 'border-width', value: 'thin', offsety: 0, checked:true},
|
{ template: itemTemplate, stopPropagation: true, checkable: true, toggleGroup: 'border-width', value: Asc.c_oAscBorderStyles.Thin , offsety: 0, checked:true},
|
||||||
{ template: itemTemplate, stopPropagation: true, checkable: true, toggleGroup: 'border-width', value: 'medium', offsety: 20},
|
{ template: itemTemplate, stopPropagation: true, checkable: true, toggleGroup: 'border-width', value: Asc.c_oAscBorderStyles.Hair, offsety: 20},
|
||||||
{ template: itemTemplate, stopPropagation: true, checkable: true, toggleGroup: 'border-width', value: 'thick', offsety: 40}
|
{ template: itemTemplate, stopPropagation: true, checkable: true, toggleGroup: 'border-width', value: Asc.c_oAscBorderStyles.Dotted, offsety: 40},
|
||||||
|
{ template: itemTemplate, stopPropagation: true, checkable: true, toggleGroup: 'border-width', value: Asc.c_oAscBorderStyles.Dashed, offsety: 60},
|
||||||
|
{ template: itemTemplate, stopPropagation: true, checkable: true, toggleGroup: 'border-width', value: Asc.c_oAscBorderStyles.DashDot, offsety: 80},
|
||||||
|
{ template: itemTemplate, stopPropagation: true, checkable: true, toggleGroup: 'border-width', value: Asc.c_oAscBorderStyles.DashDotDot, offsety: 100},
|
||||||
|
{ template: itemTemplate, stopPropagation: true, checkable: true, toggleGroup: 'border-width', value: Asc.c_oAscBorderStyles.Medium, offsety: 120},
|
||||||
|
{ template: itemTemplate, stopPropagation: true, checkable: true, toggleGroup: 'border-width', value: Asc.c_oAscBorderStyles.MediumDashed, offsety: 140},
|
||||||
|
{ template: itemTemplate, stopPropagation: true, checkable: true, toggleGroup: 'border-width', value: Asc.c_oAscBorderStyles.MediumDashDot, offsety: 160},
|
||||||
|
{ template: itemTemplate, stopPropagation: true, checkable: true, toggleGroup: 'border-width', value: Asc.c_oAscBorderStyles.MediumDashDotDot, offsety: 180},
|
||||||
|
{ template: itemTemplate, stopPropagation: true, checkable: true, toggleGroup: 'border-width', value: Asc.c_oAscBorderStyles.Thick, offsety: 200}
|
||||||
]
|
]
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -1852,7 +1860,7 @@ define([
|
||||||
tipAlignTop: 'Align Top',
|
tipAlignTop: 'Align Top',
|
||||||
tipAlignMiddle: 'Align Middle',
|
tipAlignMiddle: 'Align Middle',
|
||||||
tipAlignBottom: 'Align Bottom',
|
tipAlignBottom: 'Align Bottom',
|
||||||
textBordersWidth: 'Borders Width',
|
textBordersStyle: 'Border Style',
|
||||||
textBordersColor: 'Borders Color',
|
textBordersColor: 'Borders Color',
|
||||||
textAlignLeft: 'Left align text',
|
textAlignLeft: 'Left align text',
|
||||||
textAlignRight: 'Right align text',
|
textAlignRight: 'Right align text',
|
||||||
|
|
|
@ -1484,7 +1484,8 @@
|
||||||
"SSE.Views.Toolbar.textAllBorders": "All Borders",
|
"SSE.Views.Toolbar.textAllBorders": "All Borders",
|
||||||
"SSE.Views.Toolbar.textBold": "Bold",
|
"SSE.Views.Toolbar.textBold": "Bold",
|
||||||
"SSE.Views.Toolbar.textBordersColor": "Border Color",
|
"SSE.Views.Toolbar.textBordersColor": "Border Color",
|
||||||
"SSE.Views.Toolbar.textBordersWidth": "Border Width",
|
"del_SSE.Views.Toolbar.textBordersWidth": "Border Width",
|
||||||
|
"SSE.Views.Toolbar.textBordersStyle": "Border Style",
|
||||||
"SSE.Views.Toolbar.textBottomBorders": "Bottom Borders",
|
"SSE.Views.Toolbar.textBottomBorders": "Bottom Borders",
|
||||||
"SSE.Views.Toolbar.textCenterBorders": "Inside Vertical Borders",
|
"SSE.Views.Toolbar.textCenterBorders": "Inside Vertical Borders",
|
||||||
"SSE.Views.Toolbar.textClockwise": "Angle Clockwise",
|
"SSE.Views.Toolbar.textClockwise": "Angle Clockwise",
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 99 B After Width: | Height: | Size: 2.4 KiB |
|
@ -246,7 +246,7 @@
|
||||||
|
|
||||||
#id-toolbar-mnu-item-border-width {
|
#id-toolbar-mnu-item-border-width {
|
||||||
.border-size-item {
|
.border-size-item {
|
||||||
background: ~"url(@{app-image-const-path}/toolbar/BorderSize.png) repeat-x scroll 0 0";
|
background: ~"url(@{app-image-const-path}/toolbar/BorderSize.png) no-repeat scroll 0 0";
|
||||||
width: 80px;
|
width: 80px;
|
||||||
height: 20px;
|
height: 20px;
|
||||||
margin-top: -3px;
|
margin-top: -3px;
|
||||||
|
|
Loading…
Reference in a new issue