diff --git a/apps/documenteditor/main/app/view/ShapeSettings.js b/apps/documenteditor/main/app/view/ShapeSettings.js
index 5850d32e70..1b5f79c3c9 100644
--- a/apps/documenteditor/main/app/view/ShapeSettings.js
+++ b/apps/documenteditor/main/app/view/ShapeSettings.js
@@ -1958,7 +1958,12 @@ define([
]),
itemTemplate: _.template(
'
' +
- '
' +
+ '
px;' +
+ 'margin-right:<%= offsetX %>px;' +
+ 'box-shadow: <%= offsetX %>px <%= offsetY %>px 0px <%= spread %>px <% if(Common.Utils.isIE) {%>rgba(0,0,0,0.4)<%} else {%>var(--text-tertiary)<%}%>;"' +
+ '>' +
+ '
' +
'
')
});
this.viewShadowShapePresets.on('item:click', _.bind(this.onSelectShadowPreset, this));
diff --git a/apps/documenteditor/main/resources/less/rightmenu.less b/apps/documenteditor/main/resources/less/rightmenu.less
index 330cdccab7..8241fcafb8 100644
--- a/apps/documenteditor/main/resources/less/rightmenu.less
+++ b/apps/documenteditor/main/resources/less/rightmenu.less
@@ -271,7 +271,8 @@
height: 32px;
background: white;
border-radius: 1px;
- border: 1px var(--icon-normal) solid;
+ border: 1px @icon-normal-ie solid;
+ border: 1px @icon-normal solid;
}
}
diff --git a/apps/presentationeditor/main/app/view/ShapeSettings.js b/apps/presentationeditor/main/app/view/ShapeSettings.js
index 46cd4aefce..9dd3a5ac47 100644
--- a/apps/presentationeditor/main/app/view/ShapeSettings.js
+++ b/apps/presentationeditor/main/app/view/ShapeSettings.js
@@ -1821,7 +1821,12 @@ define([
]),
itemTemplate: _.template(
'' +
- '
' +
+ '
px;' +
+ 'margin-right:<%= offsetX %>px;' +
+ 'box-shadow: <%= offsetX %>px <%= offsetY %>px 0px <%= spread %>px <% if(Common.Utils.isIE) {%>rgba(0,0,0,0.4)<%} else {%>var(--text-tertiary)<%}%>;"' +
+ '>' +
+ '
' +
'
')
});
this.viewShadowShapePresets.on('item:click', _.bind(this.onSelectShadowPreset, this));
diff --git a/apps/presentationeditor/main/resources/less/rightmenu.less b/apps/presentationeditor/main/resources/less/rightmenu.less
index 9f8b93bf89..f215e2b876 100644
--- a/apps/presentationeditor/main/resources/less/rightmenu.less
+++ b/apps/presentationeditor/main/resources/less/rightmenu.less
@@ -186,7 +186,8 @@
height: 32px;
background: white;
border-radius: 1px;
- border: 1px var(--icon-normal) solid;
+ border: 1px @icon-normal-ie solid;
+ border: 1px @icon-normal solid;
}
}
diff --git a/apps/spreadsheeteditor/main/app/view/ShapeSettings.js b/apps/spreadsheeteditor/main/app/view/ShapeSettings.js
index 68193bf7d1..16f81d8efa 100644
--- a/apps/spreadsheeteditor/main/app/view/ShapeSettings.js
+++ b/apps/spreadsheeteditor/main/app/view/ShapeSettings.js
@@ -1836,7 +1836,12 @@ define([
]),
itemTemplate: _.template(
'' +
- '
' +
+ '
px;' +
+ 'margin-right:<%= offsetX %>px;' +
+ 'box-shadow: <%= offsetX %>px <%= offsetY %>px 0px <%= spread %>px <% if(Common.Utils.isIE) {%>rgba(0,0,0,0.4)<%} else {%>var(--text-tertiary)<%}%>;"' +
+ '>' +
+ '
' +
'
')
});
this.viewShadowShapePresets.on('item:click', _.bind(this.onSelectShadowPreset, this));
diff --git a/apps/spreadsheeteditor/main/resources/less/rightmenu.less b/apps/spreadsheeteditor/main/resources/less/rightmenu.less
index 8b1157093d..fe33b68388 100644
--- a/apps/spreadsheeteditor/main/resources/less/rightmenu.less
+++ b/apps/spreadsheeteditor/main/resources/less/rightmenu.less
@@ -184,7 +184,8 @@
height: 32px;
background: white;
border-radius: 1px;
- border: 1px var(--icon-normal) solid;
+ border: 1px @icon-normal-ie solid;
+ border: 1px @icon-normal solid;
}
}