[common] fix bug 51066

This commit is contained in:
Maxim Kadushkin 2021-08-02 23:20:43 +03:00
parent 736453ce15
commit 098add81d4
2 changed files with 9 additions and 4 deletions

View file

@ -85,7 +85,7 @@ define([
'<% if (me.options.dynamiccolors!==undefined) { %>' +
'<div class="palette-color-spacer" style="width:100%;height:8px;float:left;"></div><div style="padding: 12px;">' +
'<% for (var i=0; i<me.options.dynamiccolors; i++) { %>' +
'<a class="color-dynamic-<%=i%> dynamic-empty-color" style="background:#ffffff" color="" hidefocus="on">' +
'<a class="color-dynamic-<%=i%> dynamic-empty-color" color="" hidefocus="on">' +
'<em><span unselectable="on">&#160;</span></em></a>' +
'<% } %>' +
'<% } %>' +

View file

@ -39,11 +39,16 @@
}
}
.dynamic-empty-color em span {
border:solid @scaled-one-px-value-ie @border-color-shading-ie;
border:solid @scaled-one-px-value @border-color-shading;
.dynamic-empty-color {
background: @background-normal-ie;
background: @background-normal;
em span {
border: solid @scaled-one-px-value-ie @border-color-shading-ie;
border: solid @scaled-one-px-value @border-color-shading;
background: @background-normal-ie;
background: @background-normal;
}
}
.color-transparent {