Merge pull request #1041 from ONLYOFFICE/feature/fix-bug-51066

[common] fix bug 51066
This commit is contained in:
Julia Radzhabova 2021-08-03 00:02:08 +03:00 committed by GitHub
commit ade22c4a45
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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 {