Commit 514f3d37 authored by Julia Radzhabova's avatar Julia Radzhabova

[SSE] В список цветов фона для сортировки и фильтров добавлен прозрачный цвет...

[SSE] В список цветов фона для сортировки и фильтров добавлен прозрачный цвет (он же "нет заливки").
parent fa09ad78
......@@ -138,7 +138,7 @@
@common-controls-width: 100px;
.img-commonctrl,
.theme-colorpalette .color-transparent, .dropdown-menu li .checked:before, .input-error:before {
.theme-colorpalette .color-transparent, .palette-color-ext .color-transparent, .dropdown-menu li .checked:before, .input-error:before {
background: e(%("url(%s)",'@{common-image-path}/@{common-controls}')) no-repeat;
@media
......
......@@ -755,7 +755,7 @@ define([
var colorFilter = filterObj.asc_getFilter();
colorFilter.asc_setCellColor(isCellColor);
colorFilter.asc_setCColor(Common.Utils.ThemeColor.getRgbColor(color));
colorFilter.asc_setCColor(color == 'transparent' ? null : Common.Utils.ThemeColor.getRgbColor(color));
this.api.asc_applyAutoFilter(this.configTo);
......@@ -863,7 +863,7 @@ define([
this.miNumFilter.setChecked(isCustomFilter && !isTextFilter, true);
if (colorsFont && colorsFont.length>0) {
var colors = [];
var colors = ['transparent'];
colorsFont.forEach(function(item, index) {
colors.push(Common.Utils.ThemeColor.getHexColor(item.get_r(), item.get_g(), item.get_b()).toLocaleUpperCase());
});
......@@ -877,7 +877,7 @@ define([
}
if (colorsFill && colorsFill.length>0) {
var colors = [];
var colors = ['transparent'];
colorsFill.forEach(function(item, index) {
colors.push(Common.Utils.ThemeColor.getHexColor(item.get_r(), item.get_g(), item.get_b()).toLocaleUpperCase());
});
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment