[dark theme] changed Window component

This commit is contained in:
Maxim Kadushkin 2021-02-06 12:53:01 +03:00
parent 3ef5d0e738
commit 5586caa7a8
2 changed files with 7 additions and 1 deletions

View file

@ -455,7 +455,7 @@ define([
if (!options.width) options.width = 'auto';
var template = '<div class="info-box">' +
'<% if (typeof iconCls !== "undefined") { %><div class="icon img-commonctrl <%= iconCls %>"></div><% } %>' +
'<% if (typeof iconCls !== "undefined") { %><div class="icon img-commonctrl img-no-theme-filter <%= iconCls %>"></div><% } %>' +
'<div class="text" <% if (typeof iconCls == "undefined") { %> style="padding-left:10px;" <% } %>><span><%= msg %></span>' +
'<% if (dontshow) { %><div class="dont-show-checkbox"></div><% } %>' +
'</div>' +

View file

@ -292,6 +292,12 @@
}
}
}
.img-commonctrl {
&.img-no-theme-filter {
filter: none;
}
}
}
.modal-dlg {