From baf92636fd79464e733eb3a880ca98b3369fd5a9 Mon Sep 17 00:00:00 2001 From: guy Date: Thu, 4 May 2017 14:17:43 +0800 Subject: [PATCH] =?UTF-8?q?=E5=85=A8=E5=B1=80=E6=A0=B7=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bi/base.css | 2 +- bi/case.js | 21 +- bi/core.css | 86 +- docs/base.css | 2 +- docs/case.js | 21 +- docs/core.css | 86 +- docs/resource.css | 3827 +---------------- src/case/button/item.multiselect.js | 21 +- src/css/base/single/button/button.css | 2 +- src/css/core/utils/common.css | 86 +- src/css/resource/font.css | 3827 +---------------- src/less/base/table/table.grid.scrollbar.less | 33 +- src/less/core/utils/common.less | 82 +- src/less/lib/colors.less | 2 - src/less/lib/constant.less | 19 +- src/less/resource/font.less | 297 -- src/less/visual.less | 6 + 17 files changed, 422 insertions(+), 7998 deletions(-) diff --git a/bi/base.css b/bi/base.css index ea114d16d..bb03359ab 100644 --- a/bi/base.css +++ b/bi/base.css @@ -757,7 +757,7 @@ li.CodeMirror-hint-active { .bi-button.button-common.disabled, .bi-button.button-success.disabled, .bi-button.button-warning.disabled { - background: #c4c6c6 !important; + background: #cccccc !important; border-color: #c4c6c6 !important; } .bi-button.button-common.disabled, diff --git a/bi/case.js b/bi/case.js index 8ec3cc70b..a17351e18 100644 --- a/bi/case.js +++ b/bi/case.js @@ -151,7 +151,7 @@ BI.shortcut("bi.trigger_icon_button", BI.TriggerIconButton);/** * @type {*|void|Object} */ BI.MultiSelectItem = BI.inherit(BI.BasicButton, { - _defaultConfig: function() { + _defaultConfig: function () { return BI.extend(BI.MultiSelectItem.superclass._defaultConfig.apply(this, arguments), { extraCls: "bi-multi-select-item", height: 25, @@ -160,7 +160,7 @@ BI.MultiSelectItem = BI.inherit(BI.BasicButton, { } }) }, - _init : function() { + _init: function () { BI.MultiSelectItem.superclass._init.apply(this, arguments); var self = this, o = this.options; this.checkbox = BI.createWidget({ @@ -180,8 +180,8 @@ BI.MultiSelectItem = BI.inherit(BI.BasicButton, { value: o.value, py: o.py }); - this.checkbox.on(BI.Controller.EVENT_CHANGE, function(type){ - if(type === BI.Events.CLICK) { + this.checkbox.on(BI.Controller.EVENT_CHANGE, function (type) { + if (type === BI.Events.CLICK) { self.setSelected(self.isSelected()); } }); @@ -193,7 +193,7 @@ BI.MultiSelectItem = BI.inherit(BI.BasicButton, { type: "bi.center_adapt", items: [this.checkbox], width: 36 - } ,this.text) + }, this.text) })))); }, @@ -202,20 +202,23 @@ BI.MultiSelectItem = BI.inherit(BI.BasicButton, { this.checkbox.setEnable(v); }, - doRedMark: function(){ + doRedMark: function () { this.text.doRedMark.apply(this.text, arguments); }, - unRedMark: function(){ + unRedMark: function () { this.text.unRedMark.apply(this.text, arguments); }, - doClick: function(){ + doClick: function () { BI.MultiSelectItem.superclass.doClick.apply(this, arguments); this.checkbox.setSelected(this.isSelected()); + if (this.isValid()) { + this.fireEvent(BI.MultiSelectItem.EVENT_CHANGE, this.getValue(), this); + } }, - setSelected: function(v){ + setSelected: function (v) { BI.MultiSelectItem.superclass.setSelected.apply(this, arguments); this.checkbox.setSelected(v); } diff --git a/bi/core.css b/bi/core.css index b8d3b3897..1de3c19fc 100644 --- a/bi/core.css +++ b/bi/core.css @@ -3064,14 +3064,15 @@ i { background: #ffffff; } .bi-z-index-mask { - background-color: rgba(26, 26, 26, 0.5); color: #ffffff; + background-color: rgba(26, 26, 26, 0.5); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#801a1a1a,endColorstr=#801a1a1a); } .bi-list-item:hover, .bi-list-item.hover { - background-color: #eff1f4; color: #1a1a1a; + background-color: rgba(26, 26, 26, 0.05); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#0d1a1a1a,endColorstr=#0d1a1a1a); } .bi-list-item.disabled, .bi-list-item.disabled:hover, @@ -3086,8 +3087,9 @@ i { } .bi-theme-dark .bi-list-item:hover, .bi-theme-dark .bi-list-item.hover { - background-color: #191b2b; color: #ffffff; + background-color: rgba(255, 255, 255, 0.05); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#0dffffff,endColorstr=#0dffffff); } .bi-theme-dark .bi-list-item.disabled, .bi-theme-dark .bi-list-item.disabled:hover, @@ -3100,9 +3102,12 @@ i { .bi-theme-dark .bi-list-item.disabled:active .bi-high-light { color: #666666 !important; } +.bi-list-item-simple { + color: #999999; +} .bi-list-item-simple:hover, .bi-list-item-simple.hover { - color: #1a1a1a; + color: #3f8ce8; } .bi-list-item-simple.disabled, .bi-list-item-simple.disabled:hover, @@ -3114,20 +3119,6 @@ i { .bi-list-item-simple.disabled:active .bi-high-light { color: #cccccc !important; } -.bi-theme-dark .bi-list-item-simple:hover, -.bi-theme-dark .bi-list-item-simple.hover { - color: #ffffff; -} -.bi-theme-dark .bi-list-item-simple.disabled, -.bi-theme-dark .bi-list-item-simple.disabled:hover, -.bi-theme-dark .bi-list-item-simple.disabled:active { - color: #666666 !important; -} -.bi-theme-dark .bi-list-item-simple.disabled .bi-high-light, -.bi-theme-dark .bi-list-item-simple.disabled:hover .bi-high-light, -.bi-theme-dark .bi-list-item-simple.disabled:active .bi-high-light { - color: #666666 !important; -} .bi-list-item-effect:hover { color: #1a1a1a; } @@ -3166,12 +3157,14 @@ i { .bi-list-item-active:hover, .bi-list-item-active.hover { color: #1a1a1a; - background-color: #eff1f4; + background-color: rgba(26, 26, 26, 0.05); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#0d1a1a1a,endColorstr=#0d1a1a1a); } .bi-list-item-active.active, .bi-list-item-active:active { color: #3f8ce8; - background-color: #eff1f4; + background-color: rgba(26, 26, 26, 0.05); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#0d1a1a1a,endColorstr=#0d1a1a1a); } .bi-list-item-active.disabled, .bi-list-item-active.disabled:hover, @@ -3186,13 +3179,15 @@ i { } .bi-theme-dark .bi-list-item-active:hover, .bi-theme-dark .bi-list-item-active.hover { - background-color: #191b2b; color: #ffffff; + background-color: rgba(255, 255, 255, 0.05); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#0dffffff,endColorstr=#0dffffff); } .bi-theme-dark .bi-list-item-active.active, .bi-theme-dark .bi-list-item-active:active { color: #3f8ce8; - background-color: #191b2b; + background-color: rgba(255, 255, 255, 0.05); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#0dffffff,endColorstr=#0dffffff); } .bi-theme-dark .bi-list-item-active.disabled, .bi-theme-dark .bi-list-item-active.disabled:hover, @@ -3207,8 +3202,9 @@ i { } .bi-list-item-select:hover, .bi-list-item-select.hover { - color: #3f8ce8; - background-color: #eff1f4; + color: #1a1a1a; + background-color: rgba(26, 26, 26, 0.05); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#0d1a1a1a,endColorstr=#0d1a1a1a); } .bi-list-item-select:active, .bi-list-item-select.active { @@ -3232,8 +3228,9 @@ i { } .bi-theme-dark .bi-list-item-select:hover, .bi-theme-dark .bi-list-item-select.hover { - color: #3f8ce8; - background-color: #191b2b; + color: #ffffff; + background-color: rgba(255, 255, 255, 0.05); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#0dffffff,endColorstr=#0dffffff); } .bi-theme-dark .bi-list-item-select:active, .bi-theme-dark .bi-list-item-select.active { @@ -3255,43 +3252,6 @@ i { .bi-theme-dark .bi-list-item-select.disabled:active .bi-high-light { color: #666666 !important; } -.bi-list-item-choose:hover { - color: #1a1a1a; -} -.bi-list-item-choose:active, -.bi-list-item-choose.active { - color: #ffffff; - background-color: #3f8ce8; -} -.bi-list-item-choose:active .bi-high-light, -.bi-list-item-choose.active .bi-high-light { - color: #ffffff; -} -.bi-list-item-choose.disabled, -.bi-list-item-choose.disabled:hover, -.bi-list-item-choose.disabled:active { - color: #cccccc !important; - background-color: transparent !important; -} -.bi-list-item-choose.disabled .bi-high-light, -.bi-list-item-choose.disabled:hover .bi-high-light, -.bi-list-item-choose.disabled:active .bi-high-light { - color: #cccccc !important; -} -.bi-theme-dark .bi-list-item-choose:hover { - color: #ffffff; -} -.bi-theme-dark .bi-list-item-choose.disabled, -.bi-theme-dark .bi-list-item-choose.disabled:hover, -.bi-theme-dark .bi-list-item-choose.disabled:active { - color: #666666 !important; - background-color: transparent !important; -} -.bi-theme-dark .bi-list-item-choose.disabled .bi-high-light, -.bi-theme-dark .bi-list-item-choose.disabled:hover .bi-high-light, -.bi-theme-dark .bi-list-item-choose.disabled:active .bi-high-light { - color: #666666 !important; -} /*****************cursor*****************/ .cursor-pointer { cursor: pointer; diff --git a/docs/base.css b/docs/base.css index ea114d16d..bb03359ab 100644 --- a/docs/base.css +++ b/docs/base.css @@ -757,7 +757,7 @@ li.CodeMirror-hint-active { .bi-button.button-common.disabled, .bi-button.button-success.disabled, .bi-button.button-warning.disabled { - background: #c4c6c6 !important; + background: #cccccc !important; border-color: #c4c6c6 !important; } .bi-button.button-common.disabled, diff --git a/docs/case.js b/docs/case.js index 8ec3cc70b..a17351e18 100644 --- a/docs/case.js +++ b/docs/case.js @@ -151,7 +151,7 @@ BI.shortcut("bi.trigger_icon_button", BI.TriggerIconButton);/** * @type {*|void|Object} */ BI.MultiSelectItem = BI.inherit(BI.BasicButton, { - _defaultConfig: function() { + _defaultConfig: function () { return BI.extend(BI.MultiSelectItem.superclass._defaultConfig.apply(this, arguments), { extraCls: "bi-multi-select-item", height: 25, @@ -160,7 +160,7 @@ BI.MultiSelectItem = BI.inherit(BI.BasicButton, { } }) }, - _init : function() { + _init: function () { BI.MultiSelectItem.superclass._init.apply(this, arguments); var self = this, o = this.options; this.checkbox = BI.createWidget({ @@ -180,8 +180,8 @@ BI.MultiSelectItem = BI.inherit(BI.BasicButton, { value: o.value, py: o.py }); - this.checkbox.on(BI.Controller.EVENT_CHANGE, function(type){ - if(type === BI.Events.CLICK) { + this.checkbox.on(BI.Controller.EVENT_CHANGE, function (type) { + if (type === BI.Events.CLICK) { self.setSelected(self.isSelected()); } }); @@ -193,7 +193,7 @@ BI.MultiSelectItem = BI.inherit(BI.BasicButton, { type: "bi.center_adapt", items: [this.checkbox], width: 36 - } ,this.text) + }, this.text) })))); }, @@ -202,20 +202,23 @@ BI.MultiSelectItem = BI.inherit(BI.BasicButton, { this.checkbox.setEnable(v); }, - doRedMark: function(){ + doRedMark: function () { this.text.doRedMark.apply(this.text, arguments); }, - unRedMark: function(){ + unRedMark: function () { this.text.unRedMark.apply(this.text, arguments); }, - doClick: function(){ + doClick: function () { BI.MultiSelectItem.superclass.doClick.apply(this, arguments); this.checkbox.setSelected(this.isSelected()); + if (this.isValid()) { + this.fireEvent(BI.MultiSelectItem.EVENT_CHANGE, this.getValue(), this); + } }, - setSelected: function(v){ + setSelected: function (v) { BI.MultiSelectItem.superclass.setSelected.apply(this, arguments); this.checkbox.setSelected(v); } diff --git a/docs/core.css b/docs/core.css index b8d3b3897..1de3c19fc 100644 --- a/docs/core.css +++ b/docs/core.css @@ -3064,14 +3064,15 @@ i { background: #ffffff; } .bi-z-index-mask { - background-color: rgba(26, 26, 26, 0.5); color: #ffffff; + background-color: rgba(26, 26, 26, 0.5); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#801a1a1a,endColorstr=#801a1a1a); } .bi-list-item:hover, .bi-list-item.hover { - background-color: #eff1f4; color: #1a1a1a; + background-color: rgba(26, 26, 26, 0.05); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#0d1a1a1a,endColorstr=#0d1a1a1a); } .bi-list-item.disabled, .bi-list-item.disabled:hover, @@ -3086,8 +3087,9 @@ i { } .bi-theme-dark .bi-list-item:hover, .bi-theme-dark .bi-list-item.hover { - background-color: #191b2b; color: #ffffff; + background-color: rgba(255, 255, 255, 0.05); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#0dffffff,endColorstr=#0dffffff); } .bi-theme-dark .bi-list-item.disabled, .bi-theme-dark .bi-list-item.disabled:hover, @@ -3100,9 +3102,12 @@ i { .bi-theme-dark .bi-list-item.disabled:active .bi-high-light { color: #666666 !important; } +.bi-list-item-simple { + color: #999999; +} .bi-list-item-simple:hover, .bi-list-item-simple.hover { - color: #1a1a1a; + color: #3f8ce8; } .bi-list-item-simple.disabled, .bi-list-item-simple.disabled:hover, @@ -3114,20 +3119,6 @@ i { .bi-list-item-simple.disabled:active .bi-high-light { color: #cccccc !important; } -.bi-theme-dark .bi-list-item-simple:hover, -.bi-theme-dark .bi-list-item-simple.hover { - color: #ffffff; -} -.bi-theme-dark .bi-list-item-simple.disabled, -.bi-theme-dark .bi-list-item-simple.disabled:hover, -.bi-theme-dark .bi-list-item-simple.disabled:active { - color: #666666 !important; -} -.bi-theme-dark .bi-list-item-simple.disabled .bi-high-light, -.bi-theme-dark .bi-list-item-simple.disabled:hover .bi-high-light, -.bi-theme-dark .bi-list-item-simple.disabled:active .bi-high-light { - color: #666666 !important; -} .bi-list-item-effect:hover { color: #1a1a1a; } @@ -3166,12 +3157,14 @@ i { .bi-list-item-active:hover, .bi-list-item-active.hover { color: #1a1a1a; - background-color: #eff1f4; + background-color: rgba(26, 26, 26, 0.05); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#0d1a1a1a,endColorstr=#0d1a1a1a); } .bi-list-item-active.active, .bi-list-item-active:active { color: #3f8ce8; - background-color: #eff1f4; + background-color: rgba(26, 26, 26, 0.05); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#0d1a1a1a,endColorstr=#0d1a1a1a); } .bi-list-item-active.disabled, .bi-list-item-active.disabled:hover, @@ -3186,13 +3179,15 @@ i { } .bi-theme-dark .bi-list-item-active:hover, .bi-theme-dark .bi-list-item-active.hover { - background-color: #191b2b; color: #ffffff; + background-color: rgba(255, 255, 255, 0.05); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#0dffffff,endColorstr=#0dffffff); } .bi-theme-dark .bi-list-item-active.active, .bi-theme-dark .bi-list-item-active:active { color: #3f8ce8; - background-color: #191b2b; + background-color: rgba(255, 255, 255, 0.05); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#0dffffff,endColorstr=#0dffffff); } .bi-theme-dark .bi-list-item-active.disabled, .bi-theme-dark .bi-list-item-active.disabled:hover, @@ -3207,8 +3202,9 @@ i { } .bi-list-item-select:hover, .bi-list-item-select.hover { - color: #3f8ce8; - background-color: #eff1f4; + color: #1a1a1a; + background-color: rgba(26, 26, 26, 0.05); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#0d1a1a1a,endColorstr=#0d1a1a1a); } .bi-list-item-select:active, .bi-list-item-select.active { @@ -3232,8 +3228,9 @@ i { } .bi-theme-dark .bi-list-item-select:hover, .bi-theme-dark .bi-list-item-select.hover { - color: #3f8ce8; - background-color: #191b2b; + color: #ffffff; + background-color: rgba(255, 255, 255, 0.05); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#0dffffff,endColorstr=#0dffffff); } .bi-theme-dark .bi-list-item-select:active, .bi-theme-dark .bi-list-item-select.active { @@ -3255,43 +3252,6 @@ i { .bi-theme-dark .bi-list-item-select.disabled:active .bi-high-light { color: #666666 !important; } -.bi-list-item-choose:hover { - color: #1a1a1a; -} -.bi-list-item-choose:active, -.bi-list-item-choose.active { - color: #ffffff; - background-color: #3f8ce8; -} -.bi-list-item-choose:active .bi-high-light, -.bi-list-item-choose.active .bi-high-light { - color: #ffffff; -} -.bi-list-item-choose.disabled, -.bi-list-item-choose.disabled:hover, -.bi-list-item-choose.disabled:active { - color: #cccccc !important; - background-color: transparent !important; -} -.bi-list-item-choose.disabled .bi-high-light, -.bi-list-item-choose.disabled:hover .bi-high-light, -.bi-list-item-choose.disabled:active .bi-high-light { - color: #cccccc !important; -} -.bi-theme-dark .bi-list-item-choose:hover { - color: #ffffff; -} -.bi-theme-dark .bi-list-item-choose.disabled, -.bi-theme-dark .bi-list-item-choose.disabled:hover, -.bi-theme-dark .bi-list-item-choose.disabled:active { - color: #666666 !important; - background-color: transparent !important; -} -.bi-theme-dark .bi-list-item-choose.disabled .bi-high-light, -.bi-theme-dark .bi-list-item-choose.disabled:hover .bi-high-light, -.bi-theme-dark .bi-list-item-choose.disabled:active .bi-high-light { - color: #666666 !important; -} /*****************cursor*****************/ .cursor-pointer { cursor: pointer; diff --git a/docs/resource.css b/docs/resource.css index f86bee895..f48457202 100644 --- a/docs/resource.css +++ b/docs/resource.css @@ -626,18 +626,6 @@ textarea::-webkit-scrollbar-thumb { content: "\e600"; color: inherit; } -.close-red-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.close-red-font .b-font:before { - content: "\e600"; - color: #e85050; -} -.close-red-font.native .b-font:before, -.close-red-font.disabled .b-font:before { - content: "\e600"; - color: #e85050; -} .close-h-font .b-font { *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); } @@ -656,32 +644,6 @@ textarea::-webkit-scrollbar-thumb { content: "\e600"; color: inherit; } -.close-e-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.close-e-font .b-font:before { - content: "\e600"; - color: inherit; -} -.close-e-font:hover .b-font:before, -.close-e-font:focus .b-font:before, -.close-e-font.hover .b-font:before { - content: "\e600"; - color: inherit; -} -.close-e-font.active .b-font:before { - content: "\e600"; - color: #3f8ce8; -} -.close-e-font:active .b-font:before { - content: "\e600"; - color: #3f8ce8; -} -.close-e-font.native .b-font:before, -.close-e-font.disabled .b-font:before { - content: "\e600"; - color: inherit; -} .close-ha-font .b-font { *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); } @@ -723,71 +685,6 @@ textarea::-webkit-scrollbar-thumb { content: "\e600"; color: inherit; } -.trigger-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.trigger-font .b-font:before { - content: "\e603"; - color: inherit; -} -.trigger-font.native .b-font:before, -.trigger-font.disabled .b-font:before { - content: "\e603"; - color: inherit; -} -.trigger-h-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.trigger-h-font .b-font:before { - content: "\e603"; - color: inherit; -} -.trigger-h-font:hover .b-font:before, -.trigger-h-font:focus .b-font:before, -.trigger-h-font.hover .b-font:before { - content: "\e603"; - color: inherit; -} -.trigger-h-font.native .b-font:before, -.trigger-h-font.disabled .b-font:before { - content: "\e603"; - color: inherit; -} -.trigger-ha-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.trigger-ha-font .b-font:before { - content: "\e603"; - color: inherit; -} -.trigger-ha-font:hover .b-font:before, -.trigger-ha-font:focus .b-font:before, -.trigger-ha-font.hover .b-font:before { - content: "\e603"; - color: inherit; -} -.trigger-ha-font:active .b-font:before, -.trigger-ha-font.active .b-font:before { - content: "\e603"; - color: #3f8ce8; -} -.trigger-ha-font.native .b-font:before, -.trigger-ha-font.disabled .b-font:before { - content: "\e603"; - color: inherit; -} -.pre-page-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.pre-page-font .b-font:before { - content: "\e601"; - color: inherit; -} -.pre-page-font.native .b-font:before, -.pre-page-font.disabled .b-font:before { - content: "\e601"; - color: inherit; -} .pre-page-h-font .b-font { *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); } @@ -806,41 +703,6 @@ textarea::-webkit-scrollbar-thumb { content: "\e601"; color: inherit; } -.pre-page-ha-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.pre-page-ha-font .b-font:before { - content: "\e601"; - color: inherit; -} -.pre-page-ha-font:hover .b-font:before, -.pre-page-ha-font:focus .b-font:before, -.pre-page-ha-font.hover .b-font:before { - content: "\e601"; - color: inherit; -} -.pre-page-ha-font:active .b-font:before, -.pre-page-ha-font.active .b-font:before { - content: "\e601"; - color: #3f8ce8; -} -.pre-page-ha-font.native .b-font:before, -.pre-page-ha-font.disabled .b-font:before { - content: "\e601"; - color: inherit; -} -.next-page-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.next-page-font .b-font:before { - content: "\e602"; - color: inherit; -} -.next-page-font.native .b-font:before, -.next-page-font.disabled .b-font:before { - content: "\e602"; - color: inherit; -} .next-page-h-font .b-font { *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); } @@ -859,29 +721,6 @@ textarea::-webkit-scrollbar-thumb { content: "\e602"; color: inherit; } -.next-page-ha-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.next-page-ha-font .b-font:before { - content: "\e602"; - color: inherit; -} -.next-page-ha-font:hover .b-font:before, -.next-page-ha-font:focus .b-font:before, -.next-page-ha-font.hover .b-font:before { - content: "\e602"; - color: inherit; -} -.next-page-ha-font:active .b-font:before, -.next-page-ha-font.active .b-font:before { - content: "\e602"; - color: #3f8ce8; -} -.next-page-ha-font.native .b-font:before, -.next-page-ha-font.disabled .b-font:before { - content: "\e602"; - color: inherit; -} .search-font .b-font { *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); } @@ -894,180 +733,6 @@ textarea::-webkit-scrollbar-thumb { content: "\e604"; color: inherit; } -.search-h-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.search-h-font .b-font:before { - content: "\e604"; - color: inherit; -} -.search-h-font:hover .b-font:before, -.search-h-font:focus .b-font:before, -.search-h-font.hover .b-font:before { - content: "\e604"; - color: inherit; -} -.search-h-font.native .b-font:before, -.search-h-font.disabled .b-font:before { - content: "\e604"; - color: inherit; -} -.search-ha-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.search-ha-font .b-font:before { - content: "\e604"; - color: inherit; -} -.search-ha-font:hover .b-font:before, -.search-ha-font:focus .b-font:before, -.search-ha-font.hover .b-font:before { - content: "\e604"; - color: inherit; -} -.search-ha-font:active .b-font:before, -.search-ha-font.active .b-font:before { - content: "\e604"; - color: #3f8ce8; -} -.search-ha-font.native .b-font:before, -.search-ha-font.disabled .b-font:before { - content: "\e604"; - color: inherit; -} -.share-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.share-font .b-font:before { - content: "\e65a"; - color: inherit; -} -.share-font.native .b-font:before, -.share-font.disabled .b-font:before { - content: "\e65a"; - color: inherit; -} -.share-h-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.share-h-font .b-font:before { - content: "\e65a"; - color: inherit; -} -.share-h-font:hover .b-font:before, -.share-h-font:focus .b-font:before, -.share-h-font.hover .b-font:before { - content: "\e65a"; - color: inherit; -} -.share-h-font.native .b-font:before, -.share-h-font.disabled .b-font:before { - content: "\e65a"; - color: inherit; -} -.share-ha-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.share-ha-font .b-font:before { - content: "\e65a"; - color: inherit; -} -.share-ha-font:hover .b-font:before, -.share-ha-font:focus .b-font:before, -.share-ha-font.hover .b-font:before { - content: "\e65a"; - color: inherit; -} -.share-ha-font:active .b-font:before, -.share-ha-font.active .b-font:before { - content: "\e65a"; - color: #3f8ce8; -} -.share-ha-font.native .b-font:before, -.share-ha-font.disabled .b-font:before { - content: "\e65a"; - color: inherit; -} -/**维度/指标 下拉列表图标字体 ~begin~**/ -.delete-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.delete-font .b-font:before { - content: "\e605"; - color: inherit; -} -.delete-font.native .b-font:before, -.delete-font.disabled .b-font:before { - content: "\e605"; - color: inherit; -} -.delete-h-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.delete-h-font .b-font:before { - content: "\e605"; - color: inherit; -} -.delete-h-font:hover .b-font:before, -.delete-h-font:focus .b-font:before, -.delete-h-font.hover .b-font:before { - content: "\e605"; - color: inherit; -} -.delete-h-font.native .b-font:before, -.delete-h-font.disabled .b-font:before { - content: "\e605"; - color: inherit; -} -.delete-ha-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.delete-ha-font .b-font:before { - content: "\e605"; - color: inherit; -} -.delete-ha-font:hover .b-font:before, -.delete-ha-font:focus .b-font:before, -.delete-ha-font.hover .b-font:before { - content: "\e605"; - color: inherit; -} -.delete-ha-font:active .b-font:before, -.delete-ha-font.active .b-font:before { - content: "\e605"; - color: #3f8ce8; -} -.delete-ha-font.native .b-font:before, -.delete-ha-font.disabled .b-font:before { - content: "\e605"; - color: inherit; -} -.delete-e-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.delete-e-font .b-font:before { - content: "\e605"; - color: inherit; -} -.delete-e-font:hover .b-font:before, -.delete-e-font:focus .b-font:before, -.delete-e-font.hover .b-font:before { - content: "\e605"; - color: inherit; -} -.delete-e-font.active .b-font:before { - content: "\e605"; - color: #3f8ce8; -} -.delete-e-font:active .b-font:before { - content: "\e605"; - color: #3f8ce8; -} -.delete-e-font.native .b-font:before, -.delete-e-font.disabled .b-font:before { - content: "\e605"; - color: inherit; -} .dot-font .b-font { *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); } @@ -1384,3440 +1049,230 @@ textarea::-webkit-scrollbar-thumb { content: "\e611"; color: inherit; } -.dimension-from-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); +/** dashboard组件/控件 下拉列表图标字体 ~end~**/ +.tree-node-triangle-expand-font .b-font { + *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); } -.dimension-from-font .b-font:before { - content: "\e612"; +.tree-node-triangle-expand-font .b-font:before { + content: "\e608"; color: inherit; } -.dimension-from-font.native .b-font:before, -.dimension-from-font.disabled .b-font:before { - content: "\e612"; +.tree-node-triangle-expand-font.native .b-font:before, +.tree-node-triangle-expand-font.disabled .b-font:before { + content: "\e608"; color: inherit; } -.dimension-from-h-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.dimension-from-h-font .b-font:before { - content: "\e612"; - color: inherit; +.tree-node-triangle-collapse-font .b-font { + *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); } -.dimension-from-h-font:hover .b-font:before, -.dimension-from-h-font:focus .b-font:before, -.dimension-from-h-font.hover .b-font:before { - content: "\e612"; +.tree-node-triangle-collapse-font .b-font:before { + content: "\e607"; color: inherit; } -.dimension-from-h-font.native .b-font:before, -.dimension-from-h-font.disabled .b-font:before { - content: "\e612"; +.tree-node-triangle-collapse-font.native .b-font:before, +.tree-node-triangle-collapse-font.disabled .b-font:before { + content: "\e607"; color: inherit; } -.dimension-from-ha-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); +.row-pre-page-h-font .b-font { + *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); } -.dimension-from-ha-font .b-font:before { - content: "\e612"; +.row-pre-page-h-font .b-font:before { + content: "\e6be"; color: inherit; } -.dimension-from-ha-font:hover .b-font:before, -.dimension-from-ha-font:focus .b-font:before, -.dimension-from-ha-font.hover .b-font:before { - content: "\e612"; +.row-pre-page-h-font:hover .b-font:before, +.row-pre-page-h-font:focus .b-font:before, +.row-pre-page-h-font.hover .b-font:before { + content: "\e6be"; color: inherit; } -.dimension-from-ha-font:active .b-font:before, -.dimension-from-ha-font.active .b-font:before { - content: "\e612"; - color: #3f8ce8; -} -.dimension-from-ha-font.native .b-font:before, -.dimension-from-ha-font.disabled .b-font:before { - content: "\e612"; +.row-pre-page-h-font.native .b-font:before, +.row-pre-page-h-font.disabled .b-font:before { + content: "\e6be"; color: inherit; } -.dimension-from-e-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); +.row-next-page-h-font .b-font { + *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); } -.dimension-from-e-font .b-font:before { - content: "\e612"; +.row-next-page-h-font .b-font:before { + content: "\e6bd"; color: inherit; } -.dimension-from-e-font:hover .b-font:before, -.dimension-from-e-font:focus .b-font:before, -.dimension-from-e-font.hover .b-font:before { - content: "\e612"; +.row-next-page-h-font:hover .b-font:before, +.row-next-page-h-font:focus .b-font:before, +.row-next-page-h-font.hover .b-font:before { + content: "\e6bd"; color: inherit; } -.dimension-from-e-font.active .b-font:before { - content: "\e612"; - color: #3f8ce8; +.row-next-page-h-font.native .b-font:before, +.row-next-page-h-font.disabled .b-font:before { + content: "\e6bd"; + color: inherit; } -.dimension-from-e-font:active .b-font:before { - content: "\e612"; - color: #3f8ce8; +.column-pre-page-h-font .b-font { + *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); } -.dimension-from-e-font.native .b-font:before, -.dimension-from-e-font.disabled .b-font:before { - content: "\e612"; +.column-pre-page-h-font .b-font:before { + content: "\e6bc"; color: inherit; } -.chart-type-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.chart-type-font .b-font:before { - content: "\e613"; +.column-pre-page-h-font:hover .b-font:before, +.column-pre-page-h-font:focus .b-font:before, +.column-pre-page-h-font.hover .b-font:before { + content: "\e6bc"; color: inherit; } -.chart-type-font.native .b-font:before, -.chart-type-font.disabled .b-font:before { - content: "\e613"; +.column-pre-page-h-font.native .b-font:before, +.column-pre-page-h-font.disabled .b-font:before { + content: "\e6bc"; color: inherit; } -.chart-type-h-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); +.column-next-page-h-font .b-font { + *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); } -.chart-type-h-font .b-font:before { - content: "\e613"; +.column-next-page-h-font .b-font:before { + content: "\e6bb"; color: inherit; } -.chart-type-h-font:hover .b-font:before, -.chart-type-h-font:focus .b-font:before, -.chart-type-h-font.hover .b-font:before { - content: "\e613"; +.column-next-page-h-font:hover .b-font:before, +.column-next-page-h-font:focus .b-font:before, +.column-next-page-h-font.hover .b-font:before { + content: "\e6bb"; color: inherit; } -.chart-type-h-font.native .b-font:before, -.chart-type-h-font.disabled .b-font:before { - content: "\e613"; +.column-next-page-h-font.native .b-font:before, +.column-next-page-h-font.disabled .b-font:before { + content: "\e6bb"; color: inherit; } -.chart-type-ha-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); +.trigger-triangle-font .b-font { + *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); } -.chart-type-ha-font .b-font:before { - content: "\e613"; - color: inherit; +.trigger-triangle-font .b-font:before { + content: "\e66a"; + color: #999999; } -.chart-type-ha-font:hover .b-font:before, -.chart-type-ha-font:focus .b-font:before, -.chart-type-ha-font.hover .b-font:before { - content: "\e613"; - color: inherit; +.trigger-triangle-font:hover .b-font:before, +.trigger-triangle-font:focus .b-font:before, +.trigger-triangle-font.hover .b-font:before { + content: "\e66a"; + color: #999999; } -.chart-type-ha-font:active .b-font:before, -.chart-type-ha-font.active .b-font:before { - content: "\e613"; +.trigger-triangle-font:active .b-font:before, +.trigger-triangle-font.active .b-font:before { + content: "\e66a"; color: #3f8ce8; } -.chart-type-ha-font.native .b-font:before, -.chart-type-ha-font.disabled .b-font:before { - content: "\e613"; - color: inherit; -} -.chart-type-e-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); +.trigger-triangle-font.native .b-font:before, +.trigger-triangle-font.disabled .b-font:before { + content: "\e66a"; + color: #999999; } -.chart-type-e-font .b-font:before { - content: "\e613"; - color: inherit; -} -.chart-type-e-font:hover .b-font:before, -.chart-type-e-font:focus .b-font:before, -.chart-type-e-font.hover .b-font:before { - content: "\e613"; - color: inherit; -} -.chart-type-e-font.active .b-font:before { - content: "\e613"; - color: #3f8ce8; -} -.chart-type-e-font:active .b-font:before { - content: "\e613"; - color: #3f8ce8; -} -.chart-type-e-font.native .b-font:before, -.chart-type-e-font.disabled .b-font:before { - content: "\e613"; - color: inherit; -} -.style-set-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.style-set-font .b-font:before { - content: "\e60c"; - color: inherit; -} -.style-set-font.native .b-font:before, -.style-set-font.disabled .b-font:before { - content: "\e60c"; - color: inherit; -} -.style-set-h-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.style-set-h-font .b-font:before { - content: "\e60c"; - color: inherit; -} -.style-set-h-font:hover .b-font:before, -.style-set-h-font:focus .b-font:before, -.style-set-h-font.hover .b-font:before { - content: "\e60c"; - color: inherit; -} -.style-set-h-font.native .b-font:before, -.style-set-h-font.disabled .b-font:before { - content: "\e60c"; - color: inherit; -} -.style-set-ha-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.style-set-ha-font .b-font:before { - content: "\e60c"; - color: inherit; -} -.style-set-ha-font:hover .b-font:before, -.style-set-ha-font:focus .b-font:before, -.style-set-ha-font.hover .b-font:before { - content: "\e60c"; - color: inherit; -} -.style-set-ha-font:active .b-font:before, -.style-set-ha-font.active .b-font:before { - content: "\e60c"; - color: #3f8ce8; -} -.style-set-ha-font.native .b-font:before, -.style-set-ha-font.disabled .b-font:before { - content: "\e60c"; - color: inherit; -} -.style-set-e-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.style-set-e-font .b-font:before { - content: "\e60c"; - color: inherit; -} -.style-set-e-font:hover .b-font:before, -.style-set-e-font:focus .b-font:before, -.style-set-e-font.hover .b-font:before { - content: "\e60c"; - color: inherit; -} -.style-set-e-font.active .b-font:before { - content: "\e60c"; - color: #3f8ce8; -} -.style-set-e-font:active .b-font:before { - content: "\e60c"; - color: #3f8ce8; -} -.style-set-e-font.native .b-font:before, -.style-set-e-font.disabled .b-font:before { - content: "\e60c"; - color: inherit; -} -.hyper-link-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.hyper-link-font .b-font:before { - content: "\e688"; - color: inherit; -} -.hyper-link-font.native .b-font:before, -.hyper-link-font.disabled .b-font:before { - content: "\e688"; - color: inherit; -} -.filter-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.filter-font .b-font:before { - content: "\e60f"; - color: inherit; -} -.filter-font.native .b-font:before, -.filter-font.disabled .b-font:before { - content: "\e60f"; - color: inherit; -} -.filter-h-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.filter-h-font .b-font:before { - content: "\e60f"; - color: inherit; -} -.filter-h-font:hover .b-font:before, -.filter-h-font:focus .b-font:before, -.filter-h-font.hover .b-font:before { - content: "\e60f"; - color: inherit; -} -.filter-h-font.native .b-font:before, -.filter-h-font.disabled .b-font:before { - content: "\e60f"; - color: inherit; -} -.filter-ha-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.filter-ha-font .b-font:before { - content: "\e60f"; - color: inherit; -} -.filter-ha-font:hover .b-font:before, -.filter-ha-font:focus .b-font:before, -.filter-ha-font.hover .b-font:before { - content: "\e60f"; - color: inherit; -} -.filter-ha-font:active .b-font:before, -.filter-ha-font.active .b-font:before { - content: "\e60f"; - color: #3f8ce8; -} -.filter-ha-font.native .b-font:before, -.filter-ha-font.disabled .b-font:before { - content: "\e60f"; - color: inherit; -} -.filter-e-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.filter-e-font .b-font:before { - content: "\e60f"; - color: inherit; -} -.filter-e-font:hover .b-font:before, -.filter-e-font:focus .b-font:before, -.filter-e-font.hover .b-font:before { - content: "\e60f"; - color: inherit; -} -.filter-e-font.active .b-font:before { - content: "\e60f"; - color: #3f8ce8; -} -.filter-e-font:active .b-font:before { - content: "\e60f"; - color: #3f8ce8; -} -.filter-e-font.native .b-font:before, -.filter-e-font.disabled .b-font:before { - content: "\e60f"; - color: inherit; -} -.classify-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.classify-font .b-font:before { - content: "\e694"; - color: #3f8ce8; -} -.classify-font.native .b-font:before, -.classify-font.disabled .b-font:before { - content: "\e694"; - color: #3f8ce8; -} -.series-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.series-font .b-font:before { - content: "\e695"; - color: #58cc7d; -} -.series-font.native .b-font:before, -.series-font.disabled .b-font:before { - content: "\e695"; - color: #58cc7d; -} -/**维度/指标 下拉列表图标字体 ~end~**/ -/** dashboard组件/控件 下拉列表图标字体 ~begin~**/ -.link-to-widget-h-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.link-to-widget-h-font .b-font:before { - content: "\e600"; - color: #999999; -} -.link-to-widget-h-font:hover .b-font:before, -.link-to-widget-h-font:focus .b-font:before, -.link-to-widget-h-font.hover .b-font:before { - content: "\e600"; - color: #3f8ce8; -} -.link-to-widget-h-font.native .b-font:before, -.link-to-widget-h-font.disabled .b-font:before { - content: "\e600"; - color: #999999; -} -.link-to-detail-h-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.link-to-detail-h-font .b-font:before { - content: "\e600"; - color: #999999; -} -.link-to-detail-h-font:hover .b-font:before, -.link-to-detail-h-font:focus .b-font:before, -.link-to-detail-h-font.hover .b-font:before { - content: "\e600"; - color: #3f8ce8; -} -.link-to-detail-h-font.native .b-font:before, -.link-to-detail-h-font.disabled .b-font:before { - content: "\e600"; - color: #999999; -} -.detail-setting-h-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.detail-setting-h-font .b-font:before { - content: "\e600"; - color: #999999; -} -.detail-setting-h-font:hover .b-font:before, -.detail-setting-h-font:focus .b-font:before, -.detail-setting-h-font.hover .b-font:before { - content: "\e600"; - color: #3f8ce8; -} -.detail-setting-h-font.native .b-font:before, -.detail-setting-h-font.disabled .b-font:before { - content: "\e600"; - color: #999999; -} -.export-to-excel-h-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.export-to-excel-h-font .b-font:before { - content: "\e600"; - color: #999999; -} -.export-to-excel-h-font:hover .b-font:before, -.export-to-excel-h-font:focus .b-font:before, -.export-to-excel-h-font.hover .b-font:before { - content: "\e600"; - color: #3f8ce8; -} -.export-to-excel-h-font.native .b-font:before, -.export-to-excel-h-font.disabled .b-font:before { - content: "\e600"; - color: #999999; -} -.widget-copy-h-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.widget-copy-h-font .b-font:before { - content: "\e610"; - color: #999999; -} -.widget-copy-h-font:hover .b-font:before, -.widget-copy-h-font:focus .b-font:before, -.widget-copy-h-font.hover .b-font:before { - content: "\e610"; - color: #3f8ce8; -} -.widget-copy-h-font.native .b-font:before, -.widget-copy-h-font.disabled .b-font:before { - content: "\e610"; - color: #999999; -} -.widget-delete-h-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.widget-delete-h-font .b-font:before { - content: "\e605"; - color: #999999; -} -.widget-delete-h-font:hover .b-font:before, -.widget-delete-h-font:focus .b-font:before, -.widget-delete-h-font.hover .b-font:before { - content: "\e605"; - color: #3f8ce8; -} -.widget-delete-h-font.native .b-font:before, -.widget-delete-h-font.disabled .b-font:before { - content: "\e605"; - color: #999999; -} -/** dashboard组件/控件 下拉列表图标字体 ~end~**/ -.tree-node-triangle-expand-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.tree-node-triangle-expand-font .b-font:before { - content: "\e608"; - color: inherit; -} -.tree-node-triangle-expand-font.native .b-font:before, -.tree-node-triangle-expand-font.disabled .b-font:before { - content: "\e608"; - color: inherit; -} -.tree-node-triangle-collapse-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.tree-node-triangle-collapse-font .b-font:before { - content: "\e607"; - color: inherit; -} -.tree-node-triangle-collapse-font.native .b-font:before, -.tree-node-triangle-collapse-font.disabled .b-font:before { - content: "\e607"; - color: inherit; -} -.row-pre-page-h-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.row-pre-page-h-font .b-font:before { - content: "\e6be"; - color: inherit; -} -.row-pre-page-h-font:hover .b-font:before, -.row-pre-page-h-font:focus .b-font:before, -.row-pre-page-h-font.hover .b-font:before { - content: "\e6be"; - color: inherit; -} -.row-pre-page-h-font.native .b-font:before, -.row-pre-page-h-font.disabled .b-font:before { - content: "\e6be"; - color: inherit; -} -.row-next-page-h-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.row-next-page-h-font .b-font:before { - content: "\e6bd"; - color: inherit; -} -.row-next-page-h-font:hover .b-font:before, -.row-next-page-h-font:focus .b-font:before, -.row-next-page-h-font.hover .b-font:before { - content: "\e6bd"; - color: inherit; -} -.row-next-page-h-font.native .b-font:before, -.row-next-page-h-font.disabled .b-font:before { - content: "\e6bd"; - color: inherit; -} -.column-pre-page-h-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.column-pre-page-h-font .b-font:before { - content: "\e6bc"; - color: inherit; -} -.column-pre-page-h-font:hover .b-font:before, -.column-pre-page-h-font:focus .b-font:before, -.column-pre-page-h-font.hover .b-font:before { - content: "\e6bc"; - color: inherit; -} -.column-pre-page-h-font.native .b-font:before, -.column-pre-page-h-font.disabled .b-font:before { - content: "\e6bc"; - color: inherit; -} -.column-next-page-h-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.column-next-page-h-font .b-font:before { - content: "\e6bb"; - color: inherit; -} -.column-next-page-h-font:hover .b-font:before, -.column-next-page-h-font:focus .b-font:before, -.column-next-page-h-font.hover .b-font:before { - content: "\e6bb"; - color: inherit; -} -.column-next-page-h-font.native .b-font:before, -.column-next-page-h-font.disabled .b-font:before { - content: "\e6bb"; - color: inherit; -} -.trigger-triangle-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.trigger-triangle-font .b-font:before { - content: "\e66a"; - color: #999999; -} -.trigger-triangle-font:hover .b-font:before, -.trigger-triangle-font:focus .b-font:before, -.trigger-triangle-font.hover .b-font:before { - content: "\e66a"; - color: #999999; -} -.trigger-triangle-font:active .b-font:before, -.trigger-triangle-font.active .b-font:before { - content: "\e66a"; - color: #3f8ce8; -} -.trigger-triangle-font.native .b-font:before, -.trigger-triangle-font.disabled .b-font:before { - content: "\e66a"; - color: #999999; -} -.widget-date-next-h-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.widget-date-next-h-font .b-font:before { - content: "\e62f"; - color: inherit; -} -.widget-date-next-h-font:hover .b-font:before, -.widget-date-next-h-font:focus .b-font:before, -.widget-date-next-h-font.hover .b-font:before { - content: "\e62f"; - color: inherit; -} -.widget-date-next-h-font.native .b-font:before, -.widget-date-next-h-font.disabled .b-font:before { - content: "\e62f"; - color: inherit; -} -.widget-date-pre-h-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.widget-date-pre-h-font .b-font:before { - content: "\e62e"; - color: inherit; -} -.widget-date-pre-h-font:hover .b-font:before, -.widget-date-pre-h-font:focus .b-font:before, -.widget-date-pre-h-font.hover .b-font:before { - content: "\e62e"; - color: inherit; -} -.widget-date-pre-h-font.native .b-font:before, -.widget-date-pre-h-font.disabled .b-font:before { - content: "\e62e"; - color: inherit; -} -.widget-date-h-change-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.widget-date-h-change-font .b-font:before { - content: "\e660"; - color: inherit; -} -.widget-date-h-change-font:hover .b-font:before, -.widget-date-h-change-font:focus .b-font:before, -.widget-date-h-change-font.hover .b-font:before { - content: "\e660"; - color: inherit; -} -.widget-date-h-change-font.native .b-font:before, -.widget-date-h-change-font.disabled .b-font:before { - content: "\e660"; - color: inherit; -} -.pull-down-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.pull-down-font .b-font:before { - content: "\e608"; - color: inherit; -} -.pull-down-font.native .b-font:before, -.pull-down-font.disabled .b-font:before { - content: "\e608"; - color: inherit; -} -.pull-down-h-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.pull-down-h-font .b-font:before { - content: "\e608"; - color: inherit; -} -.pull-down-h-font:hover .b-font:before, -.pull-down-h-font:focus .b-font:before, -.pull-down-h-font.hover .b-font:before { - content: "\e608"; - color: inherit; -} -.pull-down-h-font.native .b-font:before, -.pull-down-h-font.disabled .b-font:before { - content: "\e608"; - color: inherit; -} -.pull-down-ha-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.pull-down-ha-font .b-font:before { - content: "\e608"; - color: inherit; -} -.pull-down-ha-font:hover .b-font:before, -.pull-down-ha-font:focus .b-font:before, -.pull-down-ha-font.hover .b-font:before { - content: "\e608"; - color: inherit; -} -.pull-down-ha-font:active .b-font:before, -.pull-down-ha-font.active .b-font:before { - content: "\e608"; - color: #3f8ce8; -} -.pull-down-ha-font.native .b-font:before, -.pull-down-ha-font.disabled .b-font:before { - content: "\e608"; - color: inherit; -} -.delete-field-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.delete-field-font .b-font:before { - content: "\e605"; - color: inherit; -} -.delete-field-font.native .b-font:before, -.delete-field-font.disabled .b-font:before { - content: "\e605"; - color: inherit; -} -.delete-field-h-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.delete-field-h-font .b-font:before { - content: "\e605"; - color: inherit; -} -.delete-field-h-font:hover .b-font:before, -.delete-field-h-font:focus .b-font:before, -.delete-field-h-font.hover .b-font:before { - content: "\e605"; - color: inherit; -} -.delete-field-h-font.native .b-font:before, -.delete-field-h-font.disabled .b-font:before { - content: "\e605"; - color: inherit; -} -.delete-field-ha-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.delete-field-ha-font .b-font:before { - content: "\e605"; - color: inherit; -} -.delete-field-ha-font:hover .b-font:before, -.delete-field-ha-font:focus .b-font:before, -.delete-field-ha-font.hover .b-font:before { - content: "\e605"; - color: inherit; -} -.delete-field-ha-font:active .b-font:before, -.delete-field-ha-font.active .b-font:before { - content: "\e605"; - color: #3f8ce8; -} -.delete-field-ha-font.native .b-font:before, -.delete-field-ha-font.disabled .b-font:before { - content: "\e605"; - color: inherit; -} -.toolbar-save-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.toolbar-save-font .b-font:before { - content: "\e617"; - color: inherit; -} -.toolbar-save-font:hover .b-font:before, -.toolbar-save-font:focus .b-font:before, -.toolbar-save-font.hover .b-font:before { - content: "\e617"; - color: inherit; -} -.toolbar-save-font.native .b-font:before, -.toolbar-save-font.disabled .b-font:before { - content: "\e617"; - color: inherit; -} -.toolbar-undo-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.toolbar-undo-font .b-font:before { - content: "\e619"; - color: inherit; -} -.toolbar-undo-font:hover .b-font:before, -.toolbar-undo-font:focus .b-font:before, -.toolbar-undo-font.hover .b-font:before { - content: "\e619"; - color: inherit; -} -.toolbar-undo-font.native .b-font:before, -.toolbar-undo-font.disabled .b-font:before { - content: "\e619"; - color: inherit; -} -.toolbar-redo-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.toolbar-redo-font .b-font:before { - content: "\e625"; - color: inherit; -} -.toolbar-redo-font:hover .b-font:before, -.toolbar-redo-font:focus .b-font:before, -.toolbar-redo-font.hover .b-font:before { - content: "\e625"; - color: inherit; -} -.toolbar-redo-font.native .b-font:before, -.toolbar-redo-font.disabled .b-font:before { - content: "\e625"; - color: inherit; -} -.toolbar-edit-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.toolbar-edit-font .b-font:before { - content: "\e631"; - color: inherit; -} -.toolbar-edit-font:hover .b-font:before, -.toolbar-edit-font:focus .b-font:before, -.toolbar-edit-font.hover .b-font:before { - content: "\e631"; - color: inherit; -} -.toolbar-edit-font.native .b-font:before, -.toolbar-edit-font.disabled .b-font:before { - content: "\e631"; - color: inherit; -} -.toolbar-preview-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.toolbar-preview-font .b-font:before { - content: "\e65f"; - color: inherit; -} -.toolbar-preview-font:hover .b-font:before, -.toolbar-preview-font:focus .b-font:before, -.toolbar-preview-font.hover .b-font:before { - content: "\e65f"; - color: inherit; -} -.toolbar-preview-font.native .b-font:before, -.toolbar-preview-font.disabled .b-font:before { - content: "\e65f"; - color: inherit; -} -.chart-table-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.chart-table-font .b-font:before { - content: "\e60e"; - color: inherit; -} -.chart-table-font:hover .b-font:before, -.chart-table-font:focus .b-font:before, -.chart-table-font.hover .b-font:before { - content: "\e60e"; - color: inherit; -} -.chart-table-font:active .b-font:before, -.chart-table-font.active .b-font:before { - content: "\e60e"; - color: #3f8ce8; -} -.chart-table-font.native .b-font:before, -.chart-table-font.disabled .b-font:before { - content: "\e60e"; - color: inherit; -} -.chart-axis-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.chart-axis-font .b-font:before { - content: "\e626"; - color: inherit; -} -.chart-axis-font:hover .b-font:before, -.chart-axis-font:focus .b-font:before, -.chart-axis-font.hover .b-font:before { - content: "\e626"; - color: inherit; -} -.chart-axis-font:active .b-font:before, -.chart-axis-font.active .b-font:before { - content: "\e626"; - color: #3f8ce8; -} -.chart-axis-font.native .b-font:before, -.chart-axis-font.disabled .b-font:before { - content: "\e626"; - color: inherit; -} -.chart-bar-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.chart-bar-font .b-font:before { - content: "\e620"; - color: inherit; -} -.chart-bar-font:hover .b-font:before, -.chart-bar-font:focus .b-font:before, -.chart-bar-font.hover .b-font:before { - content: "\e620"; - color: inherit; -} -.chart-bar-font:active .b-font:before, -.chart-bar-font.active .b-font:before { - content: "\e620"; - color: #3f8ce8; -} -.chart-bar-font.native .b-font:before, -.chart-bar-font.disabled .b-font:before { - content: "\e620"; - color: inherit; -} -.chart-accumulate-bar-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.chart-accumulate-bar-font .b-font:before { - content: "\e60a"; - color: inherit; -} -.chart-accumulate-bar-font:hover .b-font:before, -.chart-accumulate-bar-font:focus .b-font:before, -.chart-accumulate-bar-font.hover .b-font:before { - content: "\e60a"; - color: inherit; -} -.chart-accumulate-bar-font:active .b-font:before, -.chart-accumulate-bar-font.active .b-font:before { - content: "\e60a"; - color: #3f8ce8; -} -.chart-accumulate-bar-font.native .b-font:before, -.chart-accumulate-bar-font.disabled .b-font:before { - content: "\e60a"; - color: inherit; -} -.chart-pie-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.chart-pie-font .b-font:before { - content: "\e618"; - color: inherit; -} -.chart-pie-font:hover .b-font:before, -.chart-pie-font:focus .b-font:before, -.chart-pie-font.hover .b-font:before { - content: "\e618"; - color: inherit; -} -.chart-pie-font:active .b-font:before, -.chart-pie-font.active .b-font:before { - content: "\e618"; - color: #3f8ce8; -} -.chart-pie-font.native .b-font:before, -.chart-pie-font.disabled .b-font:before { - content: "\e618"; - color: inherit; -} -.chart-map-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.chart-map-font .b-font:before { - content: "\e62c"; - color: inherit; -} -.chart-map-font:hover .b-font:before, -.chart-map-font:focus .b-font:before, -.chart-map-font.hover .b-font:before { - content: "\e62c"; - color: inherit; -} -.chart-map-font:active .b-font:before, -.chart-map-font.active .b-font:before { - content: "\e62c"; - color: #3f8ce8; -} -.chart-map-font.native .b-font:before, -.chart-map-font.disabled .b-font:before { - content: "\e62c"; - color: inherit; -} -.chart-dashboard-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.chart-dashboard-font .b-font:before { - content: "\e623"; - color: inherit; -} -.chart-dashboard-font:hover .b-font:before, -.chart-dashboard-font:focus .b-font:before, -.chart-dashboard-font.hover .b-font:before { - content: "\e623"; - color: inherit; -} -.chart-dashboard-font:active .b-font:before, -.chart-dashboard-font.active .b-font:before { - content: "\e623"; - color: #3f8ce8; -} -.chart-dashboard-font.native .b-font:before, -.chart-dashboard-font.disabled .b-font:before { - content: "\e623"; - color: inherit; -} -.chart-doughnut-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.chart-doughnut-font .b-font:before { - content: "\e624"; - color: inherit; -} -.chart-doughnut-font:hover .b-font:before, -.chart-doughnut-font:focus .b-font:before, -.chart-doughnut-font.hover .b-font:before { - content: "\e624"; - color: inherit; -} -.chart-doughnut-font:active .b-font:before, -.chart-doughnut-font.active .b-font:before { - content: "\e624"; - color: #3f8ce8; -} -.chart-doughnut-font.native .b-font:before, -.chart-doughnut-font.disabled .b-font:before { - content: "\e624"; - color: inherit; -} -.chart-detail-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.chart-detail-font .b-font:before { - content: "\e615"; - color: inherit; -} -.chart-detail-font:hover .b-font:before, -.chart-detail-font:focus .b-font:before, -.chart-detail-font.hover .b-font:before { - content: "\e615"; - color: inherit; -} -.chart-detail-font:active .b-font:before, -.chart-detail-font.active .b-font:before { - content: "\e615"; - color: #3f8ce8; -} -.chart-detail-font.native .b-font:before, -.chart-detail-font.disabled .b-font:before { - content: "\e615"; - color: inherit; -} -.chart-more-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.chart-more-font .b-font:before { - content: "\e60d"; - color: inherit; -} -.chart-more-font:hover .b-font:before, -.chart-more-font:focus .b-font:before, -.chart-more-font.hover .b-font:before { - content: "\e60d"; - color: inherit; -} -.chart-more-font:active .b-font:before, -.chart-more-font.active .b-font:before { - content: "\e60d"; - color: #3f8ce8; -} -.chart-more-font.native .b-font:before, -.chart-more-font.disabled .b-font:before { - content: "\e60d"; - color: inherit; -} -.chart-bubble-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.chart-bubble-font .b-font:before { - content: "\e62a"; - color: inherit; -} -.chart-bubble-font:hover .b-font:before, -.chart-bubble-font:focus .b-font:before, -.chart-bubble-font.hover .b-font:before { - content: "\e62a"; - color: inherit; -} -.chart-bubble-font:active .b-font:before, -.chart-bubble-font.active .b-font:before { - content: "\e62a"; - color: #3f8ce8; -} -.chart-bubble-font.native .b-font:before, -.chart-bubble-font.disabled .b-font:before { - content: "\e62a"; - color: inherit; -} -.chart-scatter-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.chart-scatter-font .b-font:before { - content: "\e61d"; - color: inherit; -} -.chart-scatter-font:hover .b-font:before, -.chart-scatter-font:focus .b-font:before, -.chart-scatter-font.hover .b-font:before { - content: "\e61d"; - color: inherit; -} -.chart-scatter-font:active .b-font:before, -.chart-scatter-font.active .b-font:before { - content: "\e61d"; - color: #3f8ce8; -} -.chart-scatter-font.native .b-font:before, -.chart-scatter-font.disabled .b-font:before { - content: "\e61d"; - color: inherit; -} -.chart-radar-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.chart-radar-font .b-font:before { - content: "\e614"; - color: inherit; -} -.chart-radar-font:hover .b-font:before, -.chart-radar-font:focus .b-font:before, -.chart-radar-font.hover .b-font:before { - content: "\e614"; - color: inherit; -} -.chart-radar-font:active .b-font:before, -.chart-radar-font.active .b-font:before { - content: "\e614"; - color: #3f8ce8; -} -.chart-radar-font.native .b-font:before, -.chart-radar-font.disabled .b-font:before { - content: "\e614"; - color: inherit; -} -.chart-content-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.chart-content-font .b-font:before { - content: "\e621"; - color: inherit; -} -.chart-content-font:hover .b-font:before, -.chart-content-font:focus .b-font:before, -.chart-content-font.hover .b-font:before { - content: "\e621"; - color: inherit; -} -.chart-content-font:active .b-font:before, -.chart-content-font.active .b-font:before { - content: "\e621"; - color: #3f8ce8; -} -.chart-content-font.native .b-font:before, -.chart-content-font.disabled .b-font:before { - content: "\e621"; - color: inherit; -} -.chart-image-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.chart-image-font .b-font:before { - content: "\e68d"; - color: inherit; -} -.chart-image-font:hover .b-font:before, -.chart-image-font:focus .b-font:before, -.chart-image-font.hover .b-font:before { - content: "\e68d"; - color: inherit; -} -.chart-image-font:active .b-font:before, -.chart-image-font.active .b-font:before { - content: "\e68d"; - color: #3f8ce8; -} -.chart-image-font.native .b-font:before, -.chart-image-font.disabled .b-font:before { - content: "\e68d"; - color: inherit; -} -.chart-web-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.chart-web-font .b-font:before { - content: "\e68c"; - color: inherit; -} -.chart-web-font:hover .b-font:before, -.chart-web-font:focus .b-font:before, -.chart-web-font.hover .b-font:before { - content: "\e68c"; - color: inherit; -} -.chart-web-font:active .b-font:before, -.chart-web-font.active .b-font:before { - content: "\e68c"; - color: #3f8ce8; -} -.chart-web-font.native .b-font:before, -.chart-web-font.disabled .b-font:before { - content: "\e68c"; - color: inherit; -} -.chart-string-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.chart-string-font .b-font:before { - content: "\e622"; - color: inherit; -} -.chart-string-font:hover .b-font:before, -.chart-string-font:focus .b-font:before, -.chart-string-font.hover .b-font:before { - content: "\e622"; - color: inherit; -} -.chart-string-font:active .b-font:before, -.chart-string-font.active .b-font:before { - content: "\e622"; - color: #3f8ce8; -} -.chart-string-font.native .b-font:before, -.chart-string-font.disabled .b-font:before { - content: "\e622"; - color: inherit; -} -.chart-number-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.chart-number-font .b-font:before { - content: "\e61f"; - color: inherit; -} -.chart-number-font:hover .b-font:before, -.chart-number-font:focus .b-font:before, -.chart-number-font.hover .b-font:before { - content: "\e61f"; - color: inherit; -} -.chart-number-font:active .b-font:before, -.chart-number-font.active .b-font:before { - content: "\e61f"; - color: #3f8ce8; -} -.chart-number-font.native .b-font:before, -.chart-number-font.disabled .b-font:before { - content: "\e61f"; - color: inherit; -} -.chart-tree-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.chart-tree-font .b-font:before { - content: "\e61e"; - color: inherit; -} -.chart-tree-font:hover .b-font:before, -.chart-tree-font:focus .b-font:before, -.chart-tree-font.hover .b-font:before { - content: "\e61e"; - color: inherit; -} -.chart-tree-font:active .b-font:before, -.chart-tree-font.active .b-font:before { - content: "\e61e"; - color: #3f8ce8; -} -.chart-tree-font.native .b-font:before, -.chart-tree-font.disabled .b-font:before { - content: "\e61e"; - color: inherit; -} -.chart-date-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.chart-date-font .b-font:before { - content: "\e61b"; - color: inherit; -} -.chart-date-font:hover .b-font:before, -.chart-date-font:focus .b-font:before, -.chart-date-font.hover .b-font:before { - content: "\e61b"; - color: inherit; -} -.chart-date-font:active .b-font:before, -.chart-date-font.active .b-font:before { - content: "\e61b"; - color: #3f8ce8; -} -.chart-date-font.native .b-font:before, -.chart-date-font.disabled .b-font:before { - content: "\e61b"; - color: inherit; -} -.chart-year-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.chart-year-font .b-font:before { - content: "\e628"; - color: inherit; -} -.chart-year-font:hover .b-font:before, -.chart-year-font:focus .b-font:before, -.chart-year-font.hover .b-font:before { - content: "\e628"; - color: inherit; -} -.chart-year-font:active .b-font:before, -.chart-year-font.active .b-font:before { - content: "\e628"; - color: #3f8ce8; -} -.chart-year-font.native .b-font:before, -.chart-year-font.disabled .b-font:before { - content: "\e628"; - color: inherit; -} -.chart-month-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.chart-month-font .b-font:before { - content: "\e627"; - color: inherit; -} -.chart-month-font:hover .b-font:before, -.chart-month-font:focus .b-font:before, -.chart-month-font.hover .b-font:before { - content: "\e627"; - color: inherit; -} -.chart-month-font:active .b-font:before, -.chart-month-font.active .b-font:before { - content: "\e627"; - color: #3f8ce8; -} -.chart-month-font.native .b-font:before, -.chart-month-font.disabled .b-font:before { - content: "\e627"; - color: inherit; -} -.chart-quarter-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.chart-quarter-font .b-font:before { - content: "\e629"; - color: inherit; -} -.chart-quarter-font:hover .b-font:before, -.chart-quarter-font:focus .b-font:before, -.chart-quarter-font.hover .b-font:before { - content: "\e629"; - color: inherit; -} -.chart-quarter-font:active .b-font:before, -.chart-quarter-font.active .b-font:before { - content: "\e629"; - color: #3f8ce8; -} -.chart-quarter-font.native .b-font:before, -.chart-quarter-font.disabled .b-font:before { - content: "\e629"; - color: inherit; -} -.chart-ymd-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.chart-ymd-font .b-font:before { - content: "\e61c"; - color: inherit; -} -.chart-ymd-font:hover .b-font:before, -.chart-ymd-font:focus .b-font:before, -.chart-ymd-font.hover .b-font:before { - content: "\e61c"; - color: inherit; -} -.chart-ymd-font:active .b-font:before, -.chart-ymd-font.active .b-font:before { - content: "\e61c"; - color: #3f8ce8; -} -.chart-ymd-font.native .b-font:before, -.chart-ymd-font.disabled .b-font:before { - content: "\e61c"; - color: inherit; -} -.chart-date-range-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.chart-date-range-font .b-font:before { - content: "\e616"; - color: inherit; -} -.chart-date-range-font:hover .b-font:before, -.chart-date-range-font:focus .b-font:before, -.chart-date-range-font.hover .b-font:before { - content: "\e616"; - color: inherit; -} -.chart-date-range-font:active .b-font:before, -.chart-date-range-font.active .b-font:before { - content: "\e616"; - color: #3f8ce8; -} -.chart-date-range-font.native .b-font:before, -.chart-date-range-font.disabled .b-font:before { - content: "\e616"; - color: inherit; -} -.chart-general-query-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.chart-general-query-font .b-font:before { - content: "\e62b"; - color: inherit; -} -.chart-general-query-font:hover .b-font:before, -.chart-general-query-font:focus .b-font:before, -.chart-general-query-font.hover .b-font:before { - content: "\e62b"; - color: inherit; -} -.chart-general-query-font:active .b-font:before, -.chart-general-query-font.active .b-font:before { - content: "\e62b"; - color: #3f8ce8; -} -.chart-general-query-font.native .b-font:before, -.chart-general-query-font.disabled .b-font:before { - content: "\e62b"; - color: inherit; -} -.chart-query-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.chart-query-font .b-font:before { - content: "\e609"; - color: inherit; -} -.chart-query-font:hover .b-font:before, -.chart-query-font:focus .b-font:before, -.chart-query-font.hover .b-font:before { - content: "\e609"; - color: inherit; -} -.chart-query-font:active .b-font:before, -.chart-query-font.active .b-font:before { - content: "\e609"; - color: #3f8ce8; -} -.chart-query-font.native .b-font:before, -.chart-query-font.disabled .b-font:before { - content: "\e609"; - color: inherit; -} -.chart-reset-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.chart-reset-font .b-font:before { - content: "\e61a"; - color: inherit; -} -.chart-reset-font:hover .b-font:before, -.chart-reset-font:focus .b-font:before, -.chart-reset-font.hover .b-font:before { - content: "\e61a"; - color: inherit; -} -.chart-reset-font:active .b-font:before, -.chart-reset-font.active .b-font:before { - content: "\e61a"; - color: #3f8ce8; -} -.chart-reset-font.native .b-font:before, -.chart-reset-font.disabled .b-font:before { - content: "\e61a"; - color: inherit; -} -.chart-textarea-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.chart-textarea-font .b-font:before { - content: "\e622"; - color: inherit; -} -.chart-textarea-font:hover .b-font:before, -.chart-textarea-font:focus .b-font:before, -.chart-textarea-font.hover .b-font:before { - content: "\e622"; - color: inherit; -} -.chart-textarea-font:active .b-font:before, -.chart-textarea-font.active .b-font:before { - content: "\e622"; - color: #3f8ce8; -} -.chart-textarea-font.native .b-font:before, -.chart-textarea-font.disabled .b-font:before { - content: "\e622"; - color: inherit; -} -.chart-reuse-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.chart-reuse-font .b-font:before { - content: "\e60b"; - color: inherit; -} -.chart-reuse-font:hover .b-font:before, -.chart-reuse-font:focus .b-font:before, -.chart-reuse-font.hover .b-font:before { - content: "\e60b"; - color: inherit; -} -.chart-reuse-font:active .b-font:before, -.chart-reuse-font.active .b-font:before { - content: "\e60b"; - color: #3f8ce8; -} -.chart-reuse-font.native .b-font:before, -.chart-reuse-font.disabled .b-font:before { - content: "\e60b"; - color: inherit; -} -.chart-date-normal-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.chart-date-normal-font .b-font:before { - content: "\e61b"; - color: inherit; -} -.chart-date-normal-font.native .b-font:before, -.chart-date-normal-font.disabled .b-font:before { - content: "\e61b"; - color: inherit; -} -.less-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.less-font .b-font:before { - content: "\e633"; - color: inherit; -} -.less-font:hover .b-font:before, -.less-font:focus .b-font:before, -.less-font.hover .b-font:before { - content: "\e633"; - color: inherit; -} -.less-font:active .b-font:before, -.less-font.active .b-font:before { - content: "\e633"; - color: #3f8ce8; -} -.less-font.native .b-font:before, -.less-font.disabled .b-font:before { - content: "\e633"; - color: inherit; -} -.less-equal-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.less-equal-font .b-font:before { - content: "\e636"; - color: inherit; -} -.less-equal-font:hover .b-font:before, -.less-equal-font:focus .b-font:before, -.less-equal-font.hover .b-font:before { - content: "\e636"; - color: inherit; -} -.less-equal-font:active .b-font:before, -.less-equal-font.active .b-font:before { - content: "\e636"; - color: #3f8ce8; -} -.less-equal-font.native .b-font:before, -.less-equal-font.disabled .b-font:before { - content: "\e636"; - color: inherit; -} -.check-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.check-font .b-font:before { - content: "\e611"; - color: #3f8ce8; -} -.check-font.native .b-font:before, -.check-font.disabled .b-font:before { - content: "\e611"; - color: #3f8ce8; -} -.move2group-add-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.move2group-add-font .b-font:before { - content: "\e649"; - color: #3f8ce8; -} -.move2group-add-font.native .b-font:before, -.move2group-add-font.disabled .b-font:before { - content: "\e649"; - color: #3f8ce8; -} -.select-data-field-calc-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.select-data-field-calc-font .b-font:before { - content: "\e6a3"; - color: inherit; -} -.select-data-field-calc-font:hover .b-font:before, -.select-data-field-calc-font:focus .b-font:before, -.select-data-field-calc-font.hover .b-font:before { - content: "\e6a3"; - color: inherit; -} -.select-data-field-calc-font:active .b-font:before, -.select-data-field-calc-font.active .b-font:before { - content: "\e6a3"; - color: #ffffff; -} -.select-data-field-calc-font.native .b-font:before, -.select-data-field-calc-font.disabled .b-font:before { - content: "\e6a3"; - color: inherit; -} -.select-data-field-string-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.select-data-field-string-font .b-font:before { - content: "\e642"; - color: inherit; -} -.select-data-field-string-font:hover .b-font:before, -.select-data-field-string-font:focus .b-font:before, -.select-data-field-string-font.hover .b-font:before { - content: "\e642"; - color: inherit; -} -.select-data-field-string-font:active .b-font:before, -.select-data-field-string-font.active .b-font:before { - content: "\e642"; - color: #ffffff; -} -.select-data-field-string-font.native .b-font:before, -.select-data-field-string-font.disabled .b-font:before { - content: "\e642"; - color: inherit; -} -.select-data-field-number-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.select-data-field-number-font .b-font:before { - content: "\e641"; - color: inherit; -} -.select-data-field-number-font:hover .b-font:before, -.select-data-field-number-font:focus .b-font:before, -.select-data-field-number-font.hover .b-font:before { - content: "\e641"; - color: inherit; -} -.select-data-field-number-font:active .b-font:before, -.select-data-field-number-font.active .b-font:before { - content: "\e641"; - color: #ffffff; -} -.select-data-field-number-font.native .b-font:before, -.select-data-field-number-font.disabled .b-font:before { - content: "\e641"; - color: inherit; -} -.select-data-field-date-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.select-data-field-date-font .b-font:before { - content: "\e640"; - color: inherit; -} -.select-data-field-date-font:hover .b-font:before, -.select-data-field-date-font:focus .b-font:before, -.select-data-field-date-font.hover .b-font:before { - content: "\e640"; - color: inherit; -} -.select-data-field-date-font:active .b-font:before, -.select-data-field-date-font.active .b-font:before { - content: "\e640"; - color: #ffffff; -} -.select-data-field-date-font.native .b-font:before, -.select-data-field-date-font.disabled .b-font:before { - content: "\e640"; - color: inherit; -} -.select-data-field-string-group-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.select-data-field-string-group-font .b-font:before { - content: "\e642"; - color: inherit; -} -.select-data-field-string-group-font.native .b-font:before, -.select-data-field-string-group-font.disabled .b-font:before { - content: "\e642"; - color: inherit; -} -.select-data-field-number-group-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.select-data-field-number-group-font .b-font:before { - content: "\e641"; - color: inherit; -} -.select-data-field-number-group-font.native .b-font:before, -.select-data-field-number-group-font.disabled .b-font:before { - content: "\e641"; - color: inherit; -} -.select-data-field-date-group-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.select-data-field-date-group-font .b-font:before { - content: "\e640"; - color: inherit; -} -.select-data-field-date-group-font.native .b-font:before, -.select-data-field-date-group-font.disabled .b-font:before { - content: "\e640"; - color: inherit; -} -.select-data-preview-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.select-data-preview-font .b-font:before { - content: "\e65f"; - color: #999999; -} -.select-data-preview-font:hover .b-font:before, -.select-data-preview-font:focus .b-font:before, -.select-data-preview-font.hover .b-font:before { - content: "\e65f"; - color: #3f8ce8; -} -.select-data-preview-font:active .b-font:before, -.select-data-preview-font.active .b-font:before { - content: "\e65f"; - color: #3f8ce8; -} -.select-data-preview-font.native .b-font:before, -.select-data-preview-font.disabled .b-font:before { - content: "\e65f"; - color: #999999; -} -.detail-dimension-set-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.detail-dimension-set-font .b-font:before { - content: "\e678"; - color: inherit; -} -.detail-dimension-set-font:hover .b-font:before, -.detail-dimension-set-font:focus .b-font:before, -.detail-dimension-set-font.hover .b-font:before { - content: "\e678"; - color: inherit; -} -.detail-dimension-set-font.native .b-font:before, -.detail-dimension-set-font.disabled .b-font:before { - content: "\e678"; - color: inherit; -} -.detail-real-data-warning-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.detail-real-data-warning-font .b-font:before { - content: "\e64e"; - color: #f07d0a; -} -.detail-real-data-warning-font:hover .b-font:before, -.detail-real-data-warning-font:focus .b-font:before, -.detail-real-data-warning-font.hover .b-font:before { - content: "\e64e"; - color: #f07d0a; -} -.detail-real-data-warning-font.native .b-font:before, -.detail-real-data-warning-font.disabled .b-font:before { - content: "\e64e"; - color: #f07d0a; -} -.select-group-field-string-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.select-group-field-string-font .b-font:before { - content: "\e642"; - color: #3f8ce8; -} -.select-group-field-string-font:hover .b-font:before, -.select-group-field-string-font:focus .b-font:before, -.select-group-field-string-font.hover .b-font:before { - content: "\e642"; - color: #3f8ce8; -} -.select-group-field-string-font:active .b-font:before, -.select-group-field-string-font.active .b-font:before { - content: "\e642"; - color: #3f8ce8; -} -.select-group-field-string-font.native .b-font:before, -.select-group-field-string-font.disabled .b-font:before { - content: "\e642"; - color: #3f8ce8; -} -.select-group-field-number-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.select-group-field-number-font .b-font:before { - content: "\e641"; - color: #3f8ce8; -} -.select-group-field-number-font:hover .b-font:before, -.select-group-field-number-font:focus .b-font:before, -.select-group-field-number-font.hover .b-font:before { - content: "\e641"; - color: #3f8ce8; -} -.select-group-field-number-font:active .b-font:before, -.select-group-field-number-font.active .b-font:before { - content: "\e641"; - color: #3f8ce8; -} -.select-group-field-number-font.native .b-font:before, -.select-group-field-number-font.disabled .b-font:before { - content: "\e641"; - color: #3f8ce8; -} -.select-group-field-date-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.select-group-field-date-font .b-font:before { - content: "\e640"; - color: #3f8ce8; -} -.select-group-field-date-font:hover .b-font:before, -.select-group-field-date-font:focus .b-font:before, -.select-group-field-date-font.hover .b-font:before { - content: "\e640"; - color: #3f8ce8; -} -.select-group-field-date-font:active .b-font:before, -.select-group-field-date-font.active .b-font:before { - content: "\e640"; - color: #3f8ce8; -} -.select-group-field-date-font.native .b-font:before, -.select-group-field-date-font.disabled .b-font:before { - content: "\e640"; - color: #3f8ce8; -} -.dashboard-widget-combo-detail-set-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.dashboard-widget-combo-detail-set-font .b-font:before { - content: "\e634"; - color: inherit; -} -.dashboard-widget-combo-detail-set-font:hover .b-font:before, -.dashboard-widget-combo-detail-set-font:focus .b-font:before, -.dashboard-widget-combo-detail-set-font.hover .b-font:before { - content: "\e634"; - color: inherit; -} -.dashboard-widget-combo-detail-set-font.native .b-font:before, -.dashboard-widget-combo-detail-set-font.disabled .b-font:before { - content: "\e634"; - color: inherit; -} -.group-add-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.group-add-font .b-font:before { - content: "\e649"; - color: #999999; -} -.group-add-font.native .b-font:before, -.group-add-font.disabled .b-font:before { - content: "\e649"; - color: #999999; -} -.sortable-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.sortable-font .b-font:before { - content: "\e63b"; - color: inherit; -} -.sortable-font.native .b-font:before, -.sortable-font.disabled .b-font:before { - content: "\e63b"; - color: inherit; -} -.text-bold-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.text-bold-font .b-font:before { - content: "\e64d"; - color: inherit; -} -.text-bold-font.native .b-font:before, -.text-bold-font.disabled .b-font:before { - content: "\e64d"; - color: inherit; -} -.text-italic-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.text-italic-font .b-font:before { - content: "\e656"; - color: inherit; -} -.text-italic-font.native .b-font:before, -.text-italic-font.disabled .b-font:before { - content: "\e656"; - color: inherit; -} -.text-underline-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.text-underline-font .b-font:before { - content: "\e650"; - color: inherit; -} -.text-underline-font.native .b-font:before, -.text-underline-font.disabled .b-font:before { - content: "\e650"; - color: inherit; -} -.text-color-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.text-color-font .b-font:before { - content: "\e69c"; - color: inherit; -} -.text-color-font.native .b-font:before, -.text-color-font.disabled .b-font:before { - content: "\e69c"; - color: inherit; -} -.text-background-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.text-background-font .b-font:before { - content: "\e696"; - color: inherit; -} -.text-background-font.native .b-font:before, -.text-background-font.disabled .b-font:before { - content: "\e696"; - color: inherit; -} -.text-color-underline-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.text-color-underline-font .b-font:before { - content: "\e69d"; - color: inherit; -} -.text-color-underline-font.native .b-font:before, -.text-color-underline-font.disabled .b-font:before { - content: "\e69d"; - color: inherit; -} -.text-align-left-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.text-align-left-font .b-font:before { - content: "\e654"; - color: inherit; -} -.text-align-left-font.native .b-font:before, -.text-align-left-font.disabled .b-font:before { - content: "\e654"; - color: inherit; -} -.text-align-center-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.text-align-center-font .b-font:before { - content: "\e64f"; - color: inherit; -} -.text-align-center-font.native .b-font:before, -.text-align-center-font.disabled .b-font:before { - content: "\e64f"; - color: inherit; -} -.text-align-right-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.text-align-right-font .b-font:before { - content: "\e651"; - color: inherit; -} -.text-align-right-font.native .b-font:before, -.text-align-right-font.disabled .b-font:before { - content: "\e651"; - color: inherit; -} -.img-upload-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.img-upload-font .b-font:before { - content: "\e6ba"; - color: #3f8ce8; -} -.img-upload-font.native .b-font:before, -.img-upload-font.disabled .b-font:before { - content: "\e6ba"; - color: #3f8ce8; -} -.img-size-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.img-size-font .b-font:before { - content: "\e68b"; - color: #3f8ce8; -} -.img-size-font.native .b-font:before, -.img-size-font.disabled .b-font:before { - content: "\e68b"; - color: #3f8ce8; -} -.img-href-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.img-href-font .b-font:before { - content: "\e688"; - color: #3f8ce8; -} -.img-href-font.native .b-font:before, -.img-href-font.disabled .b-font:before { - content: "\e688"; - color: #3f8ce8; -} -.img-shutdown-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.img-shutdown-font .b-font:before { - content: "\e689"; - color: #3f8ce8; -} -.img-shutdown-font.native .b-font:before, -.img-shutdown-font.disabled .b-font:before { - content: "\e689"; - color: #3f8ce8; -} -.move-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.move-font .b-font:before { - content: "\e65e"; - color: inherit; -} -.move-font.native .b-font:before, -.move-font.disabled .b-font:before { - content: "\e65e"; - color: inherit; -} -.share-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.share-font .b-font:before { - content: "\e65a"; - color: inherit; -} -.share-font.native .b-font:before, -.share-font.disabled .b-font:before { - content: "\e65a"; - color: inherit; -} -.new-file-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.new-file-font .b-font:before { - content: "\e65d"; - color: inherit; -} -.new-file-font.native .b-font:before, -.new-file-font.disabled .b-font:before { - content: "\e65d"; - color: inherit; -} -.file-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.file-font .b-font:before { - content: "\e65b"; - color: #fcc550; -} -.file-font.native .b-font:before, -.file-font.disabled .b-font:before { - content: "\e65b"; - color: #fcc550; -} -.folder-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.folder-font .b-font:before { - content: "\e65c"; - color: #3f8ce8; -} -.folder-font.native .b-font:before, -.folder-font.disabled .b-font:before { - content: "\e65c"; - color: #3f8ce8; -} -.letter-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.letter-font .b-font:before { - content: "\e659"; - color: inherit; -} -.letter-font:hover .b-font:before, -.letter-font:focus .b-font:before, -.letter-font.hover .b-font:before { - content: "\e659"; - color: inherit; -} -.letter-font:active .b-font:before, -.letter-font.active .b-font:before { - content: "\e659"; - color: #3f8ce8; -} -.letter-font.native .b-font:before, -.letter-font.disabled .b-font:before { - content: "\e659"; - color: inherit; -} -.time-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.time-font .b-font:before { - content: "\e658"; - color: inherit; -} -.time-font:hover .b-font:before, -.time-font:focus .b-font:before, -.time-font.hover .b-font:before { - content: "\e658"; - color: inherit; -} -.time-font:active .b-font:before, -.time-font.active .b-font:before { - content: "\e658"; - color: #3f8ce8; -} -.time-font.native .b-font:before, -.time-font.disabled .b-font:before { - content: "\e658"; - color: inherit; -} -.rename-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.rename-font .b-font:before { - content: "\e687"; - color: inherit; -} -.rename-font.native .b-font:before, -.rename-font.disabled .b-font:before { - content: "\e687"; - color: inherit; -} -.delete-template-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.delete-template-font .b-font:before { - content: "\e605"; - color: #999999; -} -.delete-template-font.native .b-font:before, -.delete-template-font.disabled .b-font:before { - content: "\e605"; - color: #999999; -} -.real-time-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.real-time-font .b-font:before { - content: "\e6af"; - color: #fcc550; -} -.real-time-font.native .b-font:before, -.real-time-font.disabled .b-font:before { - content: "\e6af"; - color: #fcc550; -} -.data-source-table-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.data-source-table-font .b-font:before { - content: "\e67b"; - color: #3f8ce8; -} -.data-source-table-font:hover .b-font:before, -.data-source-table-font:focus .b-font:before, -.data-source-table-font.hover .b-font:before { - content: "\e67b"; - color: #3f8ce8; -} -.data-source-table-font:active .b-font:before, -.data-source-table-font.active .b-font:before { - content: "\e67b"; - color: #ffffff; -} -.data-source-table-font.native .b-font:before, -.data-source-table-font.disabled .b-font:before { - content: "\e67b"; - color: #3f8ce8; -} -.etl-table-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.etl-table-font .b-font:before { - content: "\e680"; - color: #3f8ce8; -} -.etl-table-font:hover .b-font:before, -.etl-table-font:focus .b-font:before, -.etl-table-font.hover .b-font:before { - content: "\e680"; - color: #3f8ce8; -} -.etl-table-font:active .b-font:before, -.etl-table-font.active .b-font:before { - content: "\e680"; - color: #ffffff; -} -.etl-table-font.native .b-font:before, -.etl-table-font.disabled .b-font:before { - content: "\e680"; - color: #3f8ce8; -} -.excel-table-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.excel-table-font .b-font:before { - content: "\e682"; - color: #3f8ce8; -} -.excel-table-font:hover .b-font:before, -.excel-table-font:focus .b-font:before, -.excel-table-font.hover .b-font:before { - content: "\e682"; - color: #3f8ce8; -} -.excel-table-font:active .b-font:before, -.excel-table-font.active .b-font:before { - content: "\e682"; - color: #ffffff; -} -.excel-table-font.native .b-font:before, -.excel-table-font.disabled .b-font:before { - content: "\e682"; - color: #3f8ce8; -} -.sql-table-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.sql-table-font .b-font:before { - content: "\e681"; - color: #3f8ce8; -} -.sql-table-font:hover .b-font:before, -.sql-table-font:focus .b-font:before, -.sql-table-font.hover .b-font:before { - content: "\e681"; - color: #3f8ce8; -} -.sql-table-font:active .b-font:before, -.sql-table-font.active .b-font:before { - content: "\e681"; - color: #ffffff; -} -.sql-table-font.native .b-font:before, -.sql-table-font.disabled .b-font:before { - content: "\e681"; - color: #3f8ce8; -} -.refresh-table-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.refresh-table-font .b-font:before { - content: "\e683"; - color: inherit; -} -.refresh-table-font.native .b-font:before, -.refresh-table-font.disabled .b-font:before { - content: "\e683"; - color: inherit; -} -.recover-chart-font-hightlight .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.recover-chart-font-hightlight .b-font:before { - content: "\e6b4"; - color: inherit; -} -.recover-chart-font-hightlight.native .b-font:before, -.recover-chart-font-hightlight.disabled .b-font:before { - content: "\e6b4"; - color: inherit; -} -.tables-tile-view-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.tables-tile-view-font .b-font:before { - content: "\e685"; - color: inherit; -} -.tables-tile-view-font:hover .b-font:before, -.tables-tile-view-font:focus .b-font:before, -.tables-tile-view-font.hover .b-font:before { - content: "\e685"; - color: inherit; -} -.tables-tile-view-font:active .b-font:before, -.tables-tile-view-font.active .b-font:before { - content: "\e685"; - color: #ffffff; -} -.tables-tile-view-font.native .b-font:before, -.tables-tile-view-font.disabled .b-font:before { - content: "\e685"; - color: inherit; -} -.tables-relation-view-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.tables-relation-view-font .b-font:before { - content: "\e684"; - color: inherit; -} -.tables-relation-view-font:hover .b-font:before, -.tables-relation-view-font:focus .b-font:before, -.tables-relation-view-font.hover .b-font:before { - content: "\e684"; - color: inherit; -} -.tables-relation-view-font:active .b-font:before, -.tables-relation-view-font.active .b-font:before { - content: "\e684"; - color: #ffffff; -} -.tables-relation-view-font.native .b-font:before, -.tables-relation-view-font.disabled .b-font:before { - content: "\e684"; - color: inherit; -} -.add-new-table-pull-down-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.add-new-table-pull-down-font .b-font:before { - content: "\e62d"; - color: #ffffff; -} -.add-new-table-pull-down-font.native .b-font:before, -.add-new-table-pull-down-font.disabled .b-font:before { - content: "\e62d"; - color: #ffffff; -} -.data-link-check-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.data-link-check-font .b-font:before { - content: "\e611"; - color: #ffffff; -} -.data-link-check-font:hover .b-font:before, -.data-link-check-font:focus .b-font:before, -.data-link-check-font.hover .b-font:before { - content: "\e611"; - color: #999999; -} -.data-link-check-font:active .b-font:before, -.data-link-check-font.active .b-font:before { - content: "\e611"; - color: #3f8ce8; -} -.data-link-check-font.native .b-font:before, -.data-link-check-font.disabled .b-font:before { - content: "\e611"; - color: #ffffff; -} -.edit-set-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.edit-set-font .b-font:before { - content: "\e634"; - color: inherit; -} -.edit-set-font:hover .b-font:before, -.edit-set-font:focus .b-font:before, -.edit-set-font.hover .b-font:before { - content: "\e634"; - color: inherit; -} -.edit-set-font.native .b-font:before, -.edit-set-font.disabled .b-font:before { - content: "\e634"; - color: inherit; -} -.new-analysis-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.new-analysis-font .b-font:before { - content: "\e692"; - color: #ffffff; -} -.new-analysis-font:hover .b-font:before, -.new-analysis-font:focus .b-font:before, -.new-analysis-font.hover .b-font:before { - content: "\e692"; - color: #ffffff; -} -.new-analysis-font.native .b-font:before, -.new-analysis-font.disabled .b-font:before { - content: "\e692"; - color: #ffffff; -} -.data-config-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.data-config-font .b-font:before { - content: "\e693"; - color: #ffffff; -} -.data-config-font:hover .b-font:before, -.data-config-font:focus .b-font:before, -.data-config-font.hover .b-font:before { - content: "\e693"; - color: #ffffff; -} -.data-config-font.native .b-font:before, -.data-config-font.disabled .b-font:before { - content: "\e693"; - color: #ffffff; -} -.folder-list-view .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.folder-list-view .b-font:before { - content: "\e694"; - color: inherit; -} -.folder-list-view:hover .b-font:before, -.folder-list-view:focus .b-font:before, -.folder-list-view.hover .b-font:before { - content: "\e694"; - color: inherit; -} -.folder-list-view:active .b-font:before, -.folder-list-view.active .b-font:before { - content: "\e694"; - color: #ffffff; -} -.folder-list-view.native .b-font:before, -.folder-list-view.disabled .b-font:before { - content: "\e694"; - color: inherit; -} -.folder-card-view .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.folder-card-view .b-font:before { - content: "\e685"; - color: inherit; -} -.folder-card-view:hover .b-font:before, -.folder-card-view:focus .b-font:before, -.folder-card-view.hover .b-font:before { - content: "\e685"; - color: inherit; -} -.folder-card-view:active .b-font:before, -.folder-card-view.active .b-font:before { - content: "\e685"; - color: #ffffff; -} -.folder-card-view.native .b-font:before, -.folder-card-view.disabled .b-font:before { - content: "\e685"; - color: inherit; -} -.item-check-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.item-check-font .b-font:before { - content: "\e611"; - color: #ffffff; -} -.item-check-font:hover .b-font:before, -.item-check-font:focus .b-font:before, -.item-check-font.hover .b-font:before { - content: "\e611"; - color: #999999; -} -.item-check-font:active .b-font:before, -.item-check-font.active .b-font:before { - content: "\e611"; - color: #3f8ce8; -} -.item-check-font.native .b-font:before, -.item-check-font.disabled .b-font:before { - content: "\e611"; - color: #ffffff; -} -.table-no-sort-no-filter-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.table-no-sort-no-filter-font .b-font:before { - content: "\e66a"; - color: inherit; -} -.table-no-sort-no-filter-font:hover .b-font:before, -.table-no-sort-no-filter-font:focus .b-font:before, -.table-no-sort-no-filter-font.hover .b-font:before { - content: "\e66a"; - color: inherit; -} -.table-no-sort-no-filter-font.native .b-font:before, -.table-no-sort-no-filter-font.disabled .b-font:before { - content: "\e66a"; - color: inherit; -} -.table-no-sort-filter-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.table-no-sort-filter-font .b-font:before { - content: "\e66b"; - color: inherit; -} -.table-no-sort-filter-font:hover .b-font:before, -.table-no-sort-filter-font:focus .b-font:before, -.table-no-sort-filter-font.hover .b-font:before { - content: "\e66b"; - color: inherit; -} -.table-no-sort-filter-font.native .b-font:before, -.table-no-sort-filter-font.disabled .b-font:before { - content: "\e66b"; - color: inherit; -} -.table-descending-filter-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.table-descending-filter-font .b-font:before { - content: "\e667"; - color: inherit; -} -.table-descending-filter-font:hover .b-font:before, -.table-descending-filter-font:focus .b-font:before, -.table-descending-filter-font.hover .b-font:before { - content: "\e667"; - color: inherit; -} -.table-descending-filter-font.native .b-font:before, -.table-descending-filter-font.disabled .b-font:before { - content: "\e667"; - color: inherit; -} -.table-ascending-filter-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.table-ascending-filter-font .b-font:before { - content: "\e669"; - color: inherit; -} -.table-ascending-filter-font:hover .b-font:before, -.table-ascending-filter-font:focus .b-font:before, -.table-ascending-filter-font.hover .b-font:before { - content: "\e669"; - color: inherit; -} -.table-ascending-filter-font.native .b-font:before, -.table-ascending-filter-font.disabled .b-font:before { - content: "\e669"; - color: inherit; -} -.table-descending-no-filter-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.table-descending-no-filter-font .b-font:before { - content: "\e666"; - color: inherit; -} -.table-descending-no-filter-font:hover .b-font:before, -.table-descending-no-filter-font:focus .b-font:before, -.table-descending-no-filter-font.hover .b-font:before { - content: "\e666"; - color: inherit; -} -.table-descending-no-filter-font.native .b-font:before, -.table-descending-no-filter-font.disabled .b-font:before { - content: "\e666"; - color: inherit; -} -.table-ascending-no-filter-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.table-ascending-no-filter-font .b-font:before { - content: "\e668"; - color: inherit; -} -.table-ascending-no-filter-font:hover .b-font:before, -.table-ascending-no-filter-font:focus .b-font:before, -.table-ascending-no-filter-font.hover .b-font:before { - content: "\e668"; - color: inherit; -} -.table-ascending-no-filter-font.native .b-font:before, -.table-ascending-no-filter-font.disabled .b-font:before { - content: "\e668"; - color: inherit; -} -.table-no-sort-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.table-no-sort-font .b-font:before { - content: "\e66c"; - color: inherit; -} -.table-no-sort-font:hover .b-font:before, -.table-no-sort-font:focus .b-font:before, -.table-no-sort-font.hover .b-font:before { - content: "\e66c"; - color: inherit; -} -.table-no-sort-font.native .b-font:before, -.table-no-sort-font.disabled .b-font:before { - content: "\e66c"; - color: inherit; -} -.primary-key-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.primary-key-font .b-font:before { - content: "\e67d;"; - color: inherit; -} -.primary-key-font:hover .b-font:before, -.primary-key-font:focus .b-font:before, -.primary-key-font.hover .b-font:before { - content: "\e67d;"; - color: inherit; -} -.primary-key-font.native .b-font:before, -.primary-key-font.disabled .b-font:before { - content: "\e67d;"; - color: inherit; -} -.table-open-row-style-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.table-open-row-style-font .b-font:before { - content: "\e671"; - color: inherit; -} -.table-open-row-style-font:hover .b-font:before, -.table-open-row-style-font:focus .b-font:before, -.table-open-row-style-font.hover .b-font:before { - content: "\e671"; - color: inherit; -} -.table-open-row-style-font:active .b-font:before, -.table-open-row-style-font.active .b-font:before { - content: "\e671"; - color: #3f8ce8; -} -.table-open-row-style-font.native .b-font:before, -.table-open-row-style-font.disabled .b-font:before { - content: "\e671"; - color: inherit; -} -.table-open-col-style-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.table-open-col-style-font .b-font:before { - content: "\e672"; - color: inherit; -} -.table-open-col-style-font:hover .b-font:before, -.table-open-col-style-font:focus .b-font:before, -.table-open-col-style-font.hover .b-font:before { - content: "\e672"; - color: inherit; -} -.table-open-col-style-font:active .b-font:before, -.table-open-col-style-font.active .b-font:before { - content: "\e672"; - color: #3f8ce8; -} -.table-open-col-style-font.native .b-font:before, -.table-open-col-style-font.disabled .b-font:before { - content: "\e672"; - color: inherit; -} -.calculate-function-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.calculate-function-font .b-font:before { - content: "\e6a3"; - color: #666666; -} -.calculate-function-font.native .b-font:before, -.calculate-function-font.disabled .b-font:before { - content: "\e6a3"; - color: #666666; -} -.path-set-doubt .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.path-set-doubt .b-font:before { - content: "\e69a"; - color: #3f8ce8; -} -.path-set-doubt.native .b-font:before, -.path-set-doubt.disabled .b-font:before { - content: "\e69a"; - color: #3f8ce8; -} -.rename-report-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.rename-report-font .b-font:before { - content: "\e687"; - color: #3f8ce8; -} -.rename-report-font.native .b-font:before, -.rename-report-font.disabled .b-font:before { - content: "\e687"; - color: #3f8ce8; -} -.remove-report-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.remove-report-font .b-font:before { - content: "\e605"; - color: #e85050; -} -.remove-report-font.native .b-font:before, -.remove-report-font.disabled .b-font:before { - content: "\e605"; - color: #e85050; -} -.excel-upload-tip-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.excel-upload-tip-font .b-font:before { - content: "\e69e"; - color: #3f8ce8; -} -.excel-upload-tip-font.native .b-font:before, -.excel-upload-tip-font.disabled .b-font:before { - content: "\e69e"; - color: #3f8ce8; -} -.excel-field-type-string-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.excel-field-type-string-font .b-font:before { - content: "\e622"; - color: #3f8ce8; -} -.excel-field-type-string-font.native .b-font:before, -.excel-field-type-string-font.disabled .b-font:before { - content: "\e622"; - color: #3f8ce8; -} -.excel-field-type-number-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.excel-field-type-number-font .b-font:before { - content: "\e61f"; - color: #3f8ce8; -} -.excel-field-type-number-font.native .b-font:before, -.excel-field-type-number-font.disabled .b-font:before { - content: "\e61f"; - color: #3f8ce8; -} -.excel-field-type-date-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.excel-field-type-date-font .b-font:before { - content: "\e61b"; - color: #3f8ce8; -} -.excel-field-type-date-font.native .b-font:before, -.excel-field-type-date-font.disabled .b-font:before { - content: "\e61b"; - color: #3f8ce8; -} -.excel-field-type-pull-down-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.excel-field-type-pull-down-font .b-font:before { - content: "\e608"; - color: #3f8ce8; -} -.excel-field-type-pull-down-font.native .b-font:before, -.excel-field-type-pull-down-font.disabled .b-font:before { - content: "\e608"; - color: #3f8ce8; -} -.data-link-set-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.data-link-set-font .b-font:before { - content: "\e678"; - color: #3f8ce8; -} -.data-link-set-font.native .b-font:before, -.data-link-set-font.disabled .b-font:before { - content: "\e678"; - color: #3f8ce8; -} -.data-link-test-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.data-link-test-font .b-font:before { - content: "\e686"; - color: #3f8ce8; -} -.data-link-test-font.native .b-font:before, -.data-link-test-font.disabled .b-font:before { - content: "\e686"; - color: #3f8ce8; -} -.data-link-copy-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.data-link-copy-font .b-font:before { - content: "\e610"; - color: #58cc7d; -} -.data-link-copy-font.native .b-font:before, -.data-link-copy-font.disabled .b-font:before { - content: "\e610"; - color: #58cc7d; -} -.data-link-remove-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.data-link-remove-font .b-font:before { - content: "\e600"; - color: #e85050; -} -.data-link-remove-font.native .b-font:before, -.data-link-remove-font.disabled .b-font:before { - content: "\e600"; - color: #e85050; -} -.cube-path-confirm-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.cube-path-confirm-font .b-font:before { - content: "\e64e"; - color: #fbb03b; -} -.cube-path-confirm-font.native .b-font:before, -.cube-path-confirm-font.disabled .b-font:before { - content: "\e64e"; - color: #fbb03b; -} -.target-style-less-dot-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.target-style-less-dot-font .b-font:before { - content: "\e6a2"; - color: #e85050; -} -.target-style-less-dot-font.native .b-font:before, -.target-style-less-dot-font.disabled .b-font:before { - content: "\e6a2"; - color: #e85050; -} -.target-style-equal-dot-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.target-style-equal-dot-font .b-font:before { - content: "\e6a2"; - color: #f9a744; -} -.target-style-equal-dot-font.native .b-font:before, -.target-style-equal-dot-font.disabled .b-font:before { - content: "\e6a2"; - color: #f9a744; -} -.target-style-more-dot-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.target-style-more-dot-font .b-font:before { - content: "\e6a2"; - color: #58cc7d; -} -.target-style-more-dot-font.native .b-font:before, -.target-style-more-dot-font.disabled .b-font:before { - content: "\e6a2"; - color: #58cc7d; -} -.target-style-less-arrow-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.target-style-less-arrow-font .b-font:before { - content: "\e6a1"; - color: #e85050; -} -.target-style-less-arrow-font.native .b-font:before, -.target-style-less-arrow-font.disabled .b-font:before { - content: "\e6a1"; - color: #e85050; -} -.target-style-equal-arrow-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.target-style-equal-arrow-font .b-font:before { - content: "\e69f"; - color: #f9a744; -} -.target-style-equal-arrow-font.native .b-font:before, -.target-style-equal-arrow-font.disabled .b-font:before { - content: "\e69f"; - color: #f9a744; -} -.target-style-more-arrow-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.target-style-more-arrow-font .b-font:before { - content: "\e6a0"; - color: #58cc7d; -} -.target-style-more-arrow-font.native .b-font:before, -.target-style-more-arrow-font.disabled .b-font:before { - content: "\e6a0"; - color: #58cc7d; -} -.calculate-target-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.calculate-target-font .b-font:before { - content: "\e6a3"; - color: inherit; -} -.calculate-target-font.native .b-font:before, -.calculate-target-font.disabled .b-font:before { - content: "\e6a3"; - color: inherit; -} -.task-list-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.task-list-font .b-font:before { - content: "\e694"; - color: #3f8ce8; -} -.task-list-font.native .b-font:before, -.task-list-font.disabled .b-font:before { - content: "\e694"; - color: #3f8ce8; -} -.widget-combo-detail-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.widget-combo-detail-font .b-font:before { - content: "\e697"; - color: #3f8ce8; -} -.widget-combo-detail-font.native .b-font:before, -.widget-combo-detail-font.disabled .b-font:before { - content: "\e697"; - color: #3f8ce8; -} -.widget-combo-pull-down-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.widget-combo-pull-down-font .b-font:before { - content: "\e6ab"; - color: #3f8ce8; -} -.widget-combo-pull-down-font.native .b-font:before, -.widget-combo-pull-down-font.disabled .b-font:before { - content: "\e6ab"; - color: #3f8ce8; -} -.widget-tools-filter-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.widget-tools-filter-font .b-font:before { - content: "\e60f"; - color: #3f8ce8; -} -.widget-tools-filter-font.native .b-font:before, -.widget-tools-filter-font.disabled .b-font:before { - content: "\e60f"; - color: #3f8ce8; -} -.widget-tools-clear-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.widget-tools-clear-font .b-font:before { - content: "\e63d"; - color: #3f8ce8; -} -.widget-tools-clear-font.native .b-font:before, -.widget-tools-clear-font.disabled .b-font:before { - content: "\e63d"; - color: #3f8ce8; -} -.widget-tools-export-excel-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.widget-tools-export-excel-font .b-font:before { - content: "\e635"; - color: #3f8ce8; -} -.widget-tools-export-excel-font.native .b-font:before, -.widget-tools-export-excel-font.disabled .b-font:before { - content: "\e635"; - color: #3f8ce8; -} -.widget-combo-expand-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.widget-combo-expand-font .b-font:before { - content: "\e697"; - color: inherit; -} -.widget-combo-expand-font.native .b-font:before, -.widget-combo-expand-font.disabled .b-font:before { - content: "\e697"; - color: inherit; -} -.widget-combo-linkage-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.widget-combo-linkage-font .b-font:before { - content: "\e63c"; - color: inherit; -} -.widget-combo-linkage-font.native .b-font:before, -.widget-combo-linkage-font.disabled .b-font:before { - content: "\e63c"; - color: inherit; -} -.widget-combo-rename-edit-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.widget-combo-rename-edit-font .b-font:before { - content: "\e670"; - color: inherit; -} -.widget-combo-rename-edit-font.native .b-font:before, -.widget-combo-rename-edit-font.disabled .b-font:before { - content: "\e670"; - color: inherit; -} -.widget-combo-show-title-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.widget-combo-show-title-font .b-font:before { - content: "\e64c"; - color: inherit; -} -.widget-combo-show-title-font.native .b-font:before, -.widget-combo-show-title-font.disabled .b-font:before { - content: "\e64c"; - color: inherit; -} -.widget-combo-title-left-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.widget-combo-title-left-font .b-font:before { - content: "\e654"; - color: inherit; -} -.widget-combo-title-left-font.native .b-font:before, -.widget-combo-title-left-font.disabled .b-font:before { - content: "\e654"; - color: inherit; -} -.widget-combo-title-center-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.widget-combo-title-center-font .b-font:before { - content: "\e64f"; - color: inherit; -} -.widget-combo-title-center-font.native .b-font:before, -.widget-combo-title-center-font.disabled .b-font:before { - content: "\e64f"; - color: inherit; -} -.widget-combo-show-filter-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.widget-combo-show-filter-font .b-font:before { - content: "\e60f"; - color: inherit; -} -.widget-combo-show-filter-font.native .b-font:before, -.widget-combo-show-filter-font.disabled .b-font:before { - content: "\e60f"; - color: inherit; -} -.widget-combo-export-excel-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.widget-combo-export-excel-font .b-font:before { - content: "\e635"; - color: inherit; -} -.widget-combo-export-excel-font.native .b-font:before, -.widget-combo-export-excel-font.disabled .b-font:before { - content: "\e635"; - color: inherit; -} -.widget-combo-copy .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.widget-combo-copy .b-font:before { - content: "\e610"; - color: inherit; -} -.widget-combo-copy.native .b-font:before, -.widget-combo-copy.disabled .b-font:before { - content: "\e610"; - color: inherit; -} -.widget-combo-delete .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.widget-combo-delete .b-font:before { - content: "\e605"; - color: inherit; -} -.widget-combo-delete.native .b-font:before, -.widget-combo-delete.disabled .b-font:before { - content: "\e605"; - color: inherit; -} -.widget-combo-asc-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.widget-combo-asc-font .b-font:before { - content: "\e63f"; - color: inherit; -} -.widget-combo-asc-font.native .b-font:before, -.widget-combo-asc-font.disabled .b-font:before { - content: "\e63f"; - color: inherit; -} -.widget-combo-des-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.widget-combo-des-font .b-font:before { - content: "\e63a"; - color: inherit; -} -.widget-combo-des-font.native .b-font:before, -.widget-combo-des-font.disabled .b-font:before { - content: "\e63a"; - color: inherit; -} -.widget-combo-clear-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.widget-combo-clear-font .b-font:before { - content: "\e63d"; - color: inherit; +.pull-down-font .b-font { + *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); } -.widget-combo-clear-font.native .b-font:before, -.widget-combo-clear-font.disabled .b-font:before { - content: "\e63d"; +.pull-down-font .b-font:before { + content: "\e608"; color: inherit; } -.detail-table-popup-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.detail-table-popup-font .b-font:before { - content: "\e6ac"; +.pull-down-font.native .b-font:before, +.pull-down-font.disabled .b-font:before { + content: "\e608"; color: inherit; } -.detail-table-popup-font:hover .b-font:before, -.detail-table-popup-font:focus .b-font:before, -.detail-table-popup-font.hover .b-font:before { - content: "\e6ac"; - color: #3f8ce8; +.pull-down-h-font .b-font { + *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); } -.detail-table-popup-font.native .b-font:before, -.detail-table-popup-font.disabled .b-font:before { - content: "\e6ac"; +.pull-down-h-font .b-font:before { + content: "\e608"; color: inherit; } -.chart-drill-up .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.chart-drill-up .b-font:before { - content: "\e6ad"; +.pull-down-h-font:hover .b-font:before, +.pull-down-h-font:focus .b-font:before, +.pull-down-h-font.hover .b-font:before { + content: "\e608"; color: inherit; } -.chart-drill-up.native .b-font:before, -.chart-drill-up.disabled .b-font:before { - content: "\e6ad"; +.pull-down-h-font.native .b-font:before, +.pull-down-h-font.disabled .b-font:before { + content: "\e608"; color: inherit; } -.chart-drill-down .b-font { +.pull-down-ha-font .b-font { *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); } -.chart-drill-down .b-font:before { +.pull-down-ha-font .b-font:before { content: "\e608"; color: inherit; } -.chart-drill-down.native .b-font:before, -.chart-drill-down.disabled .b-font:before { +.pull-down-ha-font:hover .b-font:before, +.pull-down-ha-font:focus .b-font:before, +.pull-down-ha-font.hover .b-font:before { content: "\e608"; color: inherit; } -.report-filter-open-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.report-filter-open-font .b-font:before { - content: "\e648"; - color: inherit; -} -.report-filter-open-font.native .b-font:before, -.report-filter-open-font.disabled .b-font:before { - content: "\e648"; - color: inherit; -} -.report-filter-close-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.report-filter-close-font .b-font:before { - content: "\e645"; - color: inherit; +.pull-down-ha-font:active .b-font:before, +.pull-down-ha-font.active .b-font:before { + content: "\e608"; + color: #3f8ce8; } -.report-filter-close-font.native .b-font:before, -.report-filter-close-font.disabled .b-font:before { - content: "\e645"; +.pull-down-ha-font.native .b-font:before, +.pull-down-ha-font.disabled .b-font:before { + content: "\e608"; color: inherit; } -.report-apply-hangout-normal-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.report-apply-hangout-normal-font .b-font:before { - content: "\e66d"; - color: #999999; -} -.report-apply-hangout-normal-font.native .b-font:before, -.report-apply-hangout-normal-font.disabled .b-font:before { - content: "\e66d"; - color: #999999; -} -.report-apply-hangout-ing-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); +.check-font .b-font { + *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); } -.report-apply-hangout-ing-font .b-font:before { - content: "\e66d"; +.check-font .b-font:before { + content: "\e611"; color: #3f8ce8; } -.report-apply-hangout-ing-font.native .b-font:before, -.report-apply-hangout-ing-font.disabled .b-font:before { - content: "\e66d"; +.check-font.native .b-font:before, +.check-font.disabled .b-font:before { + content: "\e611"; color: #3f8ce8; } -.report-hangout-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.report-hangout-font .b-font:before { - content: "\e64b"; - color: #58cc7d; -} -.report-hangout-font.native .b-font:before, -.report-hangout-font.disabled .b-font:before { - content: "\e64b"; - color: #58cc7d; -} -.report-cancel-hangout-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); +.item-check-font .b-font { + *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); } -.report-cancel-hangout-font .b-font:before { - content: "\e64b"; - color: #999999; +.item-check-font .b-font:before { + content: "\e611"; + color: #ffffff; } -.report-cancel-hangout-font.native .b-font:before, -.report-cancel-hangout-font.disabled .b-font:before { - content: "\e64b"; +.item-check-font:hover .b-font:before, +.item-check-font:focus .b-font:before, +.item-check-font.hover .b-font:before { + content: "\e611"; color: #999999; } -.report-hangout-ing-mark-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.report-hangout-ing-mark-font .b-font:before { - content: "\e64b"; - color: #3f8ce8; -} -.report-hangout-ing-mark-font.native .b-font:before, -.report-hangout-ing-mark-font.disabled .b-font:before { - content: "\e64b"; - color: #3f8ce8; -} -.delete-font-package .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.delete-font-package .b-font:before { - content: "\e605"; - color: #e85050; -} -.delete-font-package.native .b-font:before, -.delete-font-package.disabled .b-font:before { - content: "\e605"; - color: #e85050; -} -.delete-h-font-package .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.delete-h-font-package .b-font:before { - content: "\e605"; - color: #e85050; -} -.delete-h-font-package.native .b-font:before, -.delete-h-font-package.disabled .b-font:before { - content: "\e605"; - color: #e85050; -} -.rename-font-package .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.rename-font-package .b-font:before { - content: "\e687"; - color: #3f8ce8; -} -.rename-font-package.native .b-font:before, -.rename-font-package.disabled .b-font:before { - content: "\e687"; - color: #3f8ce8; -} -.package-selected-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.package-selected-font .b-font:before { - content: "\e6b3"; - color: #3f8ce8; -} -.package-selected-font.native .b-font:before, -.package-selected-font.disabled .b-font:before { - content: "\e6b3"; - color: #3f8ce8; -} -.package-not-selected-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.package-not-selected-font .b-font:before { - content: "\e6b2"; - color: #3f8ce8; -} -.package-not-selected-font.native .b-font:before, -.package-not-selected-font.disabled .b-font:before { - content: "\e6b2"; - color: #3f8ce8; -} -.report-detail-info-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.report-detail-info-font .b-font:before { - content: "\e66e"; - color: #f07d0a; -} -.report-detail-info-font.native .b-font:before, -.report-detail-info-font.disabled .b-font:before { - content: "\e66e"; - color: #f07d0a; -} -.report-rename-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.report-rename-font .b-font:before { - content: "\e670"; - color: #58cc7d; -} -.report-rename-font.native .b-font:before, -.report-rename-font.disabled .b-font:before { - content: "\e670"; - color: #58cc7d; -} -.report-cancel-share-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.report-cancel-share-font .b-font:before { - content: "\e6b5"; - color: #3f8ce8; -} -.report-cancel-share-font.native .b-font:before, -.report-cancel-share-font.disabled .b-font:before { - content: "\e6b5"; +.item-check-font:active .b-font:before, +.item-check-font.active .b-font:before { + content: "\e611"; color: #3f8ce8; } -.drill-push-up-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); +.item-check-font.native .b-font:before, +.item-check-font.disabled .b-font:before { + content: "\e611"; + color: #ffffff; } -.drill-push-up-font .b-font:before { - content: "\e630"; - color: inherit; +.primary-key-font .b-font { + *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); } -.drill-push-up-font.native .b-font:before, -.drill-push-up-font.disabled .b-font:before { - content: "\e630"; +.primary-key-font .b-font:before { + content: "\e67d;"; color: inherit; } -.drill-push-down-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.drill-push-down-font .b-font:before { - content: "\e62d"; +.primary-key-font:hover .b-font:before, +.primary-key-font:focus .b-font:before, +.primary-key-font.hover .b-font:before { + content: "\e67d;"; color: inherit; } -.drill-push-down-font.native .b-font:before, -.drill-push-down-font.disabled .b-font:before { - content: "\e62d"; +.primary-key-font.native .b-font:before, +.primary-key-font.disabled .b-font:before { + content: "\e67d;"; color: inherit; } .drag-tag-font .b-font { diff --git a/src/case/button/item.multiselect.js b/src/case/button/item.multiselect.js index a66055735..b7b7eed42 100644 --- a/src/case/button/item.multiselect.js +++ b/src/case/button/item.multiselect.js @@ -4,7 +4,7 @@ * @type {*|void|Object} */ BI.MultiSelectItem = BI.inherit(BI.BasicButton, { - _defaultConfig: function() { + _defaultConfig: function () { return BI.extend(BI.MultiSelectItem.superclass._defaultConfig.apply(this, arguments), { extraCls: "bi-multi-select-item", height: 25, @@ -13,7 +13,7 @@ BI.MultiSelectItem = BI.inherit(BI.BasicButton, { } }) }, - _init : function() { + _init: function () { BI.MultiSelectItem.superclass._init.apply(this, arguments); var self = this, o = this.options; this.checkbox = BI.createWidget({ @@ -33,8 +33,8 @@ BI.MultiSelectItem = BI.inherit(BI.BasicButton, { value: o.value, py: o.py }); - this.checkbox.on(BI.Controller.EVENT_CHANGE, function(type){ - if(type === BI.Events.CLICK) { + this.checkbox.on(BI.Controller.EVENT_CHANGE, function (type) { + if (type === BI.Events.CLICK) { self.setSelected(self.isSelected()); } }); @@ -46,7 +46,7 @@ BI.MultiSelectItem = BI.inherit(BI.BasicButton, { type: "bi.center_adapt", items: [this.checkbox], width: 36 - } ,this.text) + }, this.text) })))); }, @@ -55,20 +55,23 @@ BI.MultiSelectItem = BI.inherit(BI.BasicButton, { this.checkbox.setEnable(v); }, - doRedMark: function(){ + doRedMark: function () { this.text.doRedMark.apply(this.text, arguments); }, - unRedMark: function(){ + unRedMark: function () { this.text.unRedMark.apply(this.text, arguments); }, - doClick: function(){ + doClick: function () { BI.MultiSelectItem.superclass.doClick.apply(this, arguments); this.checkbox.setSelected(this.isSelected()); + if (this.isValid()) { + this.fireEvent(BI.MultiSelectItem.EVENT_CHANGE, this.getValue(), this); + } }, - setSelected: function(v){ + setSelected: function (v) { BI.MultiSelectItem.superclass.setSelected.apply(this, arguments); this.checkbox.setSelected(v); } diff --git a/src/css/base/single/button/button.css b/src/css/base/single/button/button.css index 72c8297ee..fbf356999 100644 --- a/src/css/base/single/button/button.css +++ b/src/css/base/single/button/button.css @@ -52,7 +52,7 @@ .bi-button.button-common.disabled, .bi-button.button-success.disabled, .bi-button.button-warning.disabled { - background: #c4c6c6 !important; + background: #cccccc !important; border-color: #c4c6c6 !important; } .bi-button.button-common.disabled, diff --git a/src/css/core/utils/common.css b/src/css/core/utils/common.css index 0f4970317..e370a07fb 100644 --- a/src/css/core/utils/common.css +++ b/src/css/core/utils/common.css @@ -111,14 +111,15 @@ background: #ffffff; } .bi-z-index-mask { - background-color: rgba(26, 26, 26, 0.5); color: #ffffff; + background-color: rgba(26, 26, 26, 0.5); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#801a1a1a,endColorstr=#801a1a1a); } .bi-list-item:hover, .bi-list-item.hover { - background-color: #eff1f4; color: #1a1a1a; + background-color: rgba(26, 26, 26, 0.05); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#0d1a1a1a,endColorstr=#0d1a1a1a); } .bi-list-item.disabled, .bi-list-item.disabled:hover, @@ -133,8 +134,9 @@ } .bi-theme-dark .bi-list-item:hover, .bi-theme-dark .bi-list-item.hover { - background-color: #191b2b; color: #ffffff; + background-color: rgba(255, 255, 255, 0.05); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#0dffffff,endColorstr=#0dffffff); } .bi-theme-dark .bi-list-item.disabled, .bi-theme-dark .bi-list-item.disabled:hover, @@ -147,9 +149,12 @@ .bi-theme-dark .bi-list-item.disabled:active .bi-high-light { color: #666666 !important; } +.bi-list-item-simple { + color: #999999; +} .bi-list-item-simple:hover, .bi-list-item-simple.hover { - color: #1a1a1a; + color: #3f8ce8; } .bi-list-item-simple.disabled, .bi-list-item-simple.disabled:hover, @@ -161,20 +166,6 @@ .bi-list-item-simple.disabled:active .bi-high-light { color: #cccccc !important; } -.bi-theme-dark .bi-list-item-simple:hover, -.bi-theme-dark .bi-list-item-simple.hover { - color: #ffffff; -} -.bi-theme-dark .bi-list-item-simple.disabled, -.bi-theme-dark .bi-list-item-simple.disabled:hover, -.bi-theme-dark .bi-list-item-simple.disabled:active { - color: #666666 !important; -} -.bi-theme-dark .bi-list-item-simple.disabled .bi-high-light, -.bi-theme-dark .bi-list-item-simple.disabled:hover .bi-high-light, -.bi-theme-dark .bi-list-item-simple.disabled:active .bi-high-light { - color: #666666 !important; -} .bi-list-item-effect:hover { color: #1a1a1a; } @@ -213,12 +204,14 @@ .bi-list-item-active:hover, .bi-list-item-active.hover { color: #1a1a1a; - background-color: #eff1f4; + background-color: rgba(26, 26, 26, 0.05); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#0d1a1a1a,endColorstr=#0d1a1a1a); } .bi-list-item-active.active, .bi-list-item-active:active { color: #3f8ce8; - background-color: #eff1f4; + background-color: rgba(26, 26, 26, 0.05); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#0d1a1a1a,endColorstr=#0d1a1a1a); } .bi-list-item-active.disabled, .bi-list-item-active.disabled:hover, @@ -233,13 +226,15 @@ } .bi-theme-dark .bi-list-item-active:hover, .bi-theme-dark .bi-list-item-active.hover { - background-color: #191b2b; color: #ffffff; + background-color: rgba(255, 255, 255, 0.05); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#0dffffff,endColorstr=#0dffffff); } .bi-theme-dark .bi-list-item-active.active, .bi-theme-dark .bi-list-item-active:active { color: #3f8ce8; - background-color: #191b2b; + background-color: rgba(255, 255, 255, 0.05); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#0dffffff,endColorstr=#0dffffff); } .bi-theme-dark .bi-list-item-active.disabled, .bi-theme-dark .bi-list-item-active.disabled:hover, @@ -254,8 +249,9 @@ } .bi-list-item-select:hover, .bi-list-item-select.hover { - color: #3f8ce8; - background-color: #eff1f4; + color: #1a1a1a; + background-color: rgba(26, 26, 26, 0.05); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#0d1a1a1a,endColorstr=#0d1a1a1a); } .bi-list-item-select:active, .bi-list-item-select.active { @@ -279,8 +275,9 @@ } .bi-theme-dark .bi-list-item-select:hover, .bi-theme-dark .bi-list-item-select.hover { - color: #3f8ce8; - background-color: #191b2b; + color: #ffffff; + background-color: rgba(255, 255, 255, 0.05); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#0dffffff,endColorstr=#0dffffff); } .bi-theme-dark .bi-list-item-select:active, .bi-theme-dark .bi-list-item-select.active { @@ -302,40 +299,3 @@ .bi-theme-dark .bi-list-item-select.disabled:active .bi-high-light { color: #666666 !important; } -.bi-list-item-choose:hover { - color: #1a1a1a; -} -.bi-list-item-choose:active, -.bi-list-item-choose.active { - color: #ffffff; - background-color: #3f8ce8; -} -.bi-list-item-choose:active .bi-high-light, -.bi-list-item-choose.active .bi-high-light { - color: #ffffff; -} -.bi-list-item-choose.disabled, -.bi-list-item-choose.disabled:hover, -.bi-list-item-choose.disabled:active { - color: #cccccc !important; - background-color: transparent !important; -} -.bi-list-item-choose.disabled .bi-high-light, -.bi-list-item-choose.disabled:hover .bi-high-light, -.bi-list-item-choose.disabled:active .bi-high-light { - color: #cccccc !important; -} -.bi-theme-dark .bi-list-item-choose:hover { - color: #ffffff; -} -.bi-theme-dark .bi-list-item-choose.disabled, -.bi-theme-dark .bi-list-item-choose.disabled:hover, -.bi-theme-dark .bi-list-item-choose.disabled:active { - color: #666666 !important; - background-color: transparent !important; -} -.bi-theme-dark .bi-list-item-choose.disabled .bi-high-light, -.bi-theme-dark .bi-list-item-choose.disabled:hover .bi-high-light, -.bi-theme-dark .bi-list-item-choose.disabled:active .bi-high-light { - color: #666666 !important; -} diff --git a/src/css/resource/font.css b/src/css/resource/font.css index e88b35ca5..9015e9501 100644 --- a/src/css/resource/font.css +++ b/src/css/resource/font.css @@ -12,18 +12,6 @@ content: "\e600"; color: inherit; } -.close-red-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.close-red-font .b-font:before { - content: "\e600"; - color: #e85050; -} -.close-red-font.native .b-font:before, -.close-red-font.disabled .b-font:before { - content: "\e600"; - color: #e85050; -} .close-h-font .b-font { *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); } @@ -42,32 +30,6 @@ content: "\e600"; color: inherit; } -.close-e-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.close-e-font .b-font:before { - content: "\e600"; - color: inherit; -} -.close-e-font:hover .b-font:before, -.close-e-font:focus .b-font:before, -.close-e-font.hover .b-font:before { - content: "\e600"; - color: inherit; -} -.close-e-font.active .b-font:before { - content: "\e600"; - color: #3f8ce8; -} -.close-e-font:active .b-font:before { - content: "\e600"; - color: #3f8ce8; -} -.close-e-font.native .b-font:before, -.close-e-font.disabled .b-font:before { - content: "\e600"; - color: inherit; -} .close-ha-font .b-font { *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); } @@ -109,71 +71,6 @@ content: "\e600"; color: inherit; } -.trigger-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.trigger-font .b-font:before { - content: "\e603"; - color: inherit; -} -.trigger-font.native .b-font:before, -.trigger-font.disabled .b-font:before { - content: "\e603"; - color: inherit; -} -.trigger-h-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.trigger-h-font .b-font:before { - content: "\e603"; - color: inherit; -} -.trigger-h-font:hover .b-font:before, -.trigger-h-font:focus .b-font:before, -.trigger-h-font.hover .b-font:before { - content: "\e603"; - color: inherit; -} -.trigger-h-font.native .b-font:before, -.trigger-h-font.disabled .b-font:before { - content: "\e603"; - color: inherit; -} -.trigger-ha-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.trigger-ha-font .b-font:before { - content: "\e603"; - color: inherit; -} -.trigger-ha-font:hover .b-font:before, -.trigger-ha-font:focus .b-font:before, -.trigger-ha-font.hover .b-font:before { - content: "\e603"; - color: inherit; -} -.trigger-ha-font:active .b-font:before, -.trigger-ha-font.active .b-font:before { - content: "\e603"; - color: #3f8ce8; -} -.trigger-ha-font.native .b-font:before, -.trigger-ha-font.disabled .b-font:before { - content: "\e603"; - color: inherit; -} -.pre-page-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.pre-page-font .b-font:before { - content: "\e601"; - color: inherit; -} -.pre-page-font.native .b-font:before, -.pre-page-font.disabled .b-font:before { - content: "\e601"; - color: inherit; -} .pre-page-h-font .b-font { *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); } @@ -192,41 +89,6 @@ content: "\e601"; color: inherit; } -.pre-page-ha-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.pre-page-ha-font .b-font:before { - content: "\e601"; - color: inherit; -} -.pre-page-ha-font:hover .b-font:before, -.pre-page-ha-font:focus .b-font:before, -.pre-page-ha-font.hover .b-font:before { - content: "\e601"; - color: inherit; -} -.pre-page-ha-font:active .b-font:before, -.pre-page-ha-font.active .b-font:before { - content: "\e601"; - color: #3f8ce8; -} -.pre-page-ha-font.native .b-font:before, -.pre-page-ha-font.disabled .b-font:before { - content: "\e601"; - color: inherit; -} -.next-page-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.next-page-font .b-font:before { - content: "\e602"; - color: inherit; -} -.next-page-font.native .b-font:before, -.next-page-font.disabled .b-font:before { - content: "\e602"; - color: inherit; -} .next-page-h-font .b-font { *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); } @@ -245,29 +107,6 @@ content: "\e602"; color: inherit; } -.next-page-ha-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.next-page-ha-font .b-font:before { - content: "\e602"; - color: inherit; -} -.next-page-ha-font:hover .b-font:before, -.next-page-ha-font:focus .b-font:before, -.next-page-ha-font.hover .b-font:before { - content: "\e602"; - color: inherit; -} -.next-page-ha-font:active .b-font:before, -.next-page-ha-font.active .b-font:before { - content: "\e602"; - color: #3f8ce8; -} -.next-page-ha-font.native .b-font:before, -.next-page-ha-font.disabled .b-font:before { - content: "\e602"; - color: inherit; -} .search-font .b-font { *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); } @@ -280,180 +119,6 @@ content: "\e604"; color: inherit; } -.search-h-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.search-h-font .b-font:before { - content: "\e604"; - color: inherit; -} -.search-h-font:hover .b-font:before, -.search-h-font:focus .b-font:before, -.search-h-font.hover .b-font:before { - content: "\e604"; - color: inherit; -} -.search-h-font.native .b-font:before, -.search-h-font.disabled .b-font:before { - content: "\e604"; - color: inherit; -} -.search-ha-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.search-ha-font .b-font:before { - content: "\e604"; - color: inherit; -} -.search-ha-font:hover .b-font:before, -.search-ha-font:focus .b-font:before, -.search-ha-font.hover .b-font:before { - content: "\e604"; - color: inherit; -} -.search-ha-font:active .b-font:before, -.search-ha-font.active .b-font:before { - content: "\e604"; - color: #3f8ce8; -} -.search-ha-font.native .b-font:before, -.search-ha-font.disabled .b-font:before { - content: "\e604"; - color: inherit; -} -.share-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.share-font .b-font:before { - content: "\e65a"; - color: inherit; -} -.share-font.native .b-font:before, -.share-font.disabled .b-font:before { - content: "\e65a"; - color: inherit; -} -.share-h-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.share-h-font .b-font:before { - content: "\e65a"; - color: inherit; -} -.share-h-font:hover .b-font:before, -.share-h-font:focus .b-font:before, -.share-h-font.hover .b-font:before { - content: "\e65a"; - color: inherit; -} -.share-h-font.native .b-font:before, -.share-h-font.disabled .b-font:before { - content: "\e65a"; - color: inherit; -} -.share-ha-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.share-ha-font .b-font:before { - content: "\e65a"; - color: inherit; -} -.share-ha-font:hover .b-font:before, -.share-ha-font:focus .b-font:before, -.share-ha-font.hover .b-font:before { - content: "\e65a"; - color: inherit; -} -.share-ha-font:active .b-font:before, -.share-ha-font.active .b-font:before { - content: "\e65a"; - color: #3f8ce8; -} -.share-ha-font.native .b-font:before, -.share-ha-font.disabled .b-font:before { - content: "\e65a"; - color: inherit; -} -/**维度/指标 下拉列表图标字体 ~begin~**/ -.delete-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.delete-font .b-font:before { - content: "\e605"; - color: inherit; -} -.delete-font.native .b-font:before, -.delete-font.disabled .b-font:before { - content: "\e605"; - color: inherit; -} -.delete-h-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.delete-h-font .b-font:before { - content: "\e605"; - color: inherit; -} -.delete-h-font:hover .b-font:before, -.delete-h-font:focus .b-font:before, -.delete-h-font.hover .b-font:before { - content: "\e605"; - color: inherit; -} -.delete-h-font.native .b-font:before, -.delete-h-font.disabled .b-font:before { - content: "\e605"; - color: inherit; -} -.delete-ha-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.delete-ha-font .b-font:before { - content: "\e605"; - color: inherit; -} -.delete-ha-font:hover .b-font:before, -.delete-ha-font:focus .b-font:before, -.delete-ha-font.hover .b-font:before { - content: "\e605"; - color: inherit; -} -.delete-ha-font:active .b-font:before, -.delete-ha-font.active .b-font:before { - content: "\e605"; - color: #3f8ce8; -} -.delete-ha-font.native .b-font:before, -.delete-ha-font.disabled .b-font:before { - content: "\e605"; - color: inherit; -} -.delete-e-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.delete-e-font .b-font:before { - content: "\e605"; - color: inherit; -} -.delete-e-font:hover .b-font:before, -.delete-e-font:focus .b-font:before, -.delete-e-font.hover .b-font:before { - content: "\e605"; - color: inherit; -} -.delete-e-font.active .b-font:before { - content: "\e605"; - color: #3f8ce8; -} -.delete-e-font:active .b-font:before { - content: "\e605"; - color: #3f8ce8; -} -.delete-e-font.native .b-font:before, -.delete-e-font.disabled .b-font:before { - content: "\e605"; - color: inherit; -} .dot-font .b-font { *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); } @@ -770,3440 +435,230 @@ content: "\e611"; color: inherit; } -.dimension-from-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); +/** dashboard组件/控件 下拉列表图标字体 ~end~**/ +.tree-node-triangle-expand-font .b-font { + *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); } -.dimension-from-font .b-font:before { - content: "\e612"; +.tree-node-triangle-expand-font .b-font:before { + content: "\e608"; color: inherit; } -.dimension-from-font.native .b-font:before, -.dimension-from-font.disabled .b-font:before { - content: "\e612"; +.tree-node-triangle-expand-font.native .b-font:before, +.tree-node-triangle-expand-font.disabled .b-font:before { + content: "\e608"; color: inherit; } -.dimension-from-h-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.dimension-from-h-font .b-font:before { - content: "\e612"; - color: inherit; +.tree-node-triangle-collapse-font .b-font { + *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); } -.dimension-from-h-font:hover .b-font:before, -.dimension-from-h-font:focus .b-font:before, -.dimension-from-h-font.hover .b-font:before { - content: "\e612"; +.tree-node-triangle-collapse-font .b-font:before { + content: "\e607"; color: inherit; } -.dimension-from-h-font.native .b-font:before, -.dimension-from-h-font.disabled .b-font:before { - content: "\e612"; +.tree-node-triangle-collapse-font.native .b-font:before, +.tree-node-triangle-collapse-font.disabled .b-font:before { + content: "\e607"; color: inherit; } -.dimension-from-ha-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); +.row-pre-page-h-font .b-font { + *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); } -.dimension-from-ha-font .b-font:before { - content: "\e612"; +.row-pre-page-h-font .b-font:before { + content: "\e6be"; color: inherit; } -.dimension-from-ha-font:hover .b-font:before, -.dimension-from-ha-font:focus .b-font:before, -.dimension-from-ha-font.hover .b-font:before { - content: "\e612"; +.row-pre-page-h-font:hover .b-font:before, +.row-pre-page-h-font:focus .b-font:before, +.row-pre-page-h-font.hover .b-font:before { + content: "\e6be"; color: inherit; } -.dimension-from-ha-font:active .b-font:before, -.dimension-from-ha-font.active .b-font:before { - content: "\e612"; - color: #3f8ce8; -} -.dimension-from-ha-font.native .b-font:before, -.dimension-from-ha-font.disabled .b-font:before { - content: "\e612"; +.row-pre-page-h-font.native .b-font:before, +.row-pre-page-h-font.disabled .b-font:before { + content: "\e6be"; color: inherit; } -.dimension-from-e-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); +.row-next-page-h-font .b-font { + *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); } -.dimension-from-e-font .b-font:before { - content: "\e612"; +.row-next-page-h-font .b-font:before { + content: "\e6bd"; color: inherit; } -.dimension-from-e-font:hover .b-font:before, -.dimension-from-e-font:focus .b-font:before, -.dimension-from-e-font.hover .b-font:before { - content: "\e612"; +.row-next-page-h-font:hover .b-font:before, +.row-next-page-h-font:focus .b-font:before, +.row-next-page-h-font.hover .b-font:before { + content: "\e6bd"; color: inherit; } -.dimension-from-e-font.active .b-font:before { - content: "\e612"; - color: #3f8ce8; +.row-next-page-h-font.native .b-font:before, +.row-next-page-h-font.disabled .b-font:before { + content: "\e6bd"; + color: inherit; } -.dimension-from-e-font:active .b-font:before { - content: "\e612"; - color: #3f8ce8; +.column-pre-page-h-font .b-font { + *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); } -.dimension-from-e-font.native .b-font:before, -.dimension-from-e-font.disabled .b-font:before { - content: "\e612"; +.column-pre-page-h-font .b-font:before { + content: "\e6bc"; color: inherit; } -.chart-type-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.chart-type-font .b-font:before { - content: "\e613"; +.column-pre-page-h-font:hover .b-font:before, +.column-pre-page-h-font:focus .b-font:before, +.column-pre-page-h-font.hover .b-font:before { + content: "\e6bc"; color: inherit; } -.chart-type-font.native .b-font:before, -.chart-type-font.disabled .b-font:before { - content: "\e613"; +.column-pre-page-h-font.native .b-font:before, +.column-pre-page-h-font.disabled .b-font:before { + content: "\e6bc"; color: inherit; } -.chart-type-h-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); +.column-next-page-h-font .b-font { + *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); } -.chart-type-h-font .b-font:before { - content: "\e613"; +.column-next-page-h-font .b-font:before { + content: "\e6bb"; color: inherit; } -.chart-type-h-font:hover .b-font:before, -.chart-type-h-font:focus .b-font:before, -.chart-type-h-font.hover .b-font:before { - content: "\e613"; +.column-next-page-h-font:hover .b-font:before, +.column-next-page-h-font:focus .b-font:before, +.column-next-page-h-font.hover .b-font:before { + content: "\e6bb"; color: inherit; } -.chart-type-h-font.native .b-font:before, -.chart-type-h-font.disabled .b-font:before { - content: "\e613"; +.column-next-page-h-font.native .b-font:before, +.column-next-page-h-font.disabled .b-font:before { + content: "\e6bb"; color: inherit; } -.chart-type-ha-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); +.trigger-triangle-font .b-font { + *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); } -.chart-type-ha-font .b-font:before { - content: "\e613"; - color: inherit; +.trigger-triangle-font .b-font:before { + content: "\e66a"; + color: #999999; } -.chart-type-ha-font:hover .b-font:before, -.chart-type-ha-font:focus .b-font:before, -.chart-type-ha-font.hover .b-font:before { - content: "\e613"; - color: inherit; +.trigger-triangle-font:hover .b-font:before, +.trigger-triangle-font:focus .b-font:before, +.trigger-triangle-font.hover .b-font:before { + content: "\e66a"; + color: #999999; } -.chart-type-ha-font:active .b-font:before, -.chart-type-ha-font.active .b-font:before { - content: "\e613"; +.trigger-triangle-font:active .b-font:before, +.trigger-triangle-font.active .b-font:before { + content: "\e66a"; color: #3f8ce8; } -.chart-type-ha-font.native .b-font:before, -.chart-type-ha-font.disabled .b-font:before { - content: "\e613"; - color: inherit; -} -.chart-type-e-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); +.trigger-triangle-font.native .b-font:before, +.trigger-triangle-font.disabled .b-font:before { + content: "\e66a"; + color: #999999; } -.chart-type-e-font .b-font:before { - content: "\e613"; - color: inherit; -} -.chart-type-e-font:hover .b-font:before, -.chart-type-e-font:focus .b-font:before, -.chart-type-e-font.hover .b-font:before { - content: "\e613"; - color: inherit; -} -.chart-type-e-font.active .b-font:before { - content: "\e613"; - color: #3f8ce8; -} -.chart-type-e-font:active .b-font:before { - content: "\e613"; - color: #3f8ce8; -} -.chart-type-e-font.native .b-font:before, -.chart-type-e-font.disabled .b-font:before { - content: "\e613"; - color: inherit; -} -.style-set-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.style-set-font .b-font:before { - content: "\e60c"; - color: inherit; -} -.style-set-font.native .b-font:before, -.style-set-font.disabled .b-font:before { - content: "\e60c"; - color: inherit; -} -.style-set-h-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.style-set-h-font .b-font:before { - content: "\e60c"; - color: inherit; -} -.style-set-h-font:hover .b-font:before, -.style-set-h-font:focus .b-font:before, -.style-set-h-font.hover .b-font:before { - content: "\e60c"; - color: inherit; -} -.style-set-h-font.native .b-font:before, -.style-set-h-font.disabled .b-font:before { - content: "\e60c"; - color: inherit; -} -.style-set-ha-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.style-set-ha-font .b-font:before { - content: "\e60c"; - color: inherit; -} -.style-set-ha-font:hover .b-font:before, -.style-set-ha-font:focus .b-font:before, -.style-set-ha-font.hover .b-font:before { - content: "\e60c"; - color: inherit; -} -.style-set-ha-font:active .b-font:before, -.style-set-ha-font.active .b-font:before { - content: "\e60c"; - color: #3f8ce8; -} -.style-set-ha-font.native .b-font:before, -.style-set-ha-font.disabled .b-font:before { - content: "\e60c"; - color: inherit; -} -.style-set-e-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.style-set-e-font .b-font:before { - content: "\e60c"; - color: inherit; -} -.style-set-e-font:hover .b-font:before, -.style-set-e-font:focus .b-font:before, -.style-set-e-font.hover .b-font:before { - content: "\e60c"; - color: inherit; -} -.style-set-e-font.active .b-font:before { - content: "\e60c"; - color: #3f8ce8; -} -.style-set-e-font:active .b-font:before { - content: "\e60c"; - color: #3f8ce8; -} -.style-set-e-font.native .b-font:before, -.style-set-e-font.disabled .b-font:before { - content: "\e60c"; - color: inherit; -} -.hyper-link-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.hyper-link-font .b-font:before { - content: "\e688"; - color: inherit; -} -.hyper-link-font.native .b-font:before, -.hyper-link-font.disabled .b-font:before { - content: "\e688"; - color: inherit; -} -.filter-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.filter-font .b-font:before { - content: "\e60f"; - color: inherit; -} -.filter-font.native .b-font:before, -.filter-font.disabled .b-font:before { - content: "\e60f"; - color: inherit; -} -.filter-h-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.filter-h-font .b-font:before { - content: "\e60f"; - color: inherit; -} -.filter-h-font:hover .b-font:before, -.filter-h-font:focus .b-font:before, -.filter-h-font.hover .b-font:before { - content: "\e60f"; - color: inherit; -} -.filter-h-font.native .b-font:before, -.filter-h-font.disabled .b-font:before { - content: "\e60f"; - color: inherit; -} -.filter-ha-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.filter-ha-font .b-font:before { - content: "\e60f"; - color: inherit; -} -.filter-ha-font:hover .b-font:before, -.filter-ha-font:focus .b-font:before, -.filter-ha-font.hover .b-font:before { - content: "\e60f"; - color: inherit; -} -.filter-ha-font:active .b-font:before, -.filter-ha-font.active .b-font:before { - content: "\e60f"; - color: #3f8ce8; -} -.filter-ha-font.native .b-font:before, -.filter-ha-font.disabled .b-font:before { - content: "\e60f"; - color: inherit; -} -.filter-e-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.filter-e-font .b-font:before { - content: "\e60f"; - color: inherit; -} -.filter-e-font:hover .b-font:before, -.filter-e-font:focus .b-font:before, -.filter-e-font.hover .b-font:before { - content: "\e60f"; - color: inherit; -} -.filter-e-font.active .b-font:before { - content: "\e60f"; - color: #3f8ce8; -} -.filter-e-font:active .b-font:before { - content: "\e60f"; - color: #3f8ce8; -} -.filter-e-font.native .b-font:before, -.filter-e-font.disabled .b-font:before { - content: "\e60f"; - color: inherit; -} -.classify-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.classify-font .b-font:before { - content: "\e694"; - color: #3f8ce8; -} -.classify-font.native .b-font:before, -.classify-font.disabled .b-font:before { - content: "\e694"; - color: #3f8ce8; -} -.series-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.series-font .b-font:before { - content: "\e695"; - color: #58cc7d; -} -.series-font.native .b-font:before, -.series-font.disabled .b-font:before { - content: "\e695"; - color: #58cc7d; -} -/**维度/指标 下拉列表图标字体 ~end~**/ -/** dashboard组件/控件 下拉列表图标字体 ~begin~**/ -.link-to-widget-h-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.link-to-widget-h-font .b-font:before { - content: "\e600"; - color: #999999; -} -.link-to-widget-h-font:hover .b-font:before, -.link-to-widget-h-font:focus .b-font:before, -.link-to-widget-h-font.hover .b-font:before { - content: "\e600"; - color: #3f8ce8; -} -.link-to-widget-h-font.native .b-font:before, -.link-to-widget-h-font.disabled .b-font:before { - content: "\e600"; - color: #999999; -} -.link-to-detail-h-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.link-to-detail-h-font .b-font:before { - content: "\e600"; - color: #999999; -} -.link-to-detail-h-font:hover .b-font:before, -.link-to-detail-h-font:focus .b-font:before, -.link-to-detail-h-font.hover .b-font:before { - content: "\e600"; - color: #3f8ce8; -} -.link-to-detail-h-font.native .b-font:before, -.link-to-detail-h-font.disabled .b-font:before { - content: "\e600"; - color: #999999; -} -.detail-setting-h-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.detail-setting-h-font .b-font:before { - content: "\e600"; - color: #999999; -} -.detail-setting-h-font:hover .b-font:before, -.detail-setting-h-font:focus .b-font:before, -.detail-setting-h-font.hover .b-font:before { - content: "\e600"; - color: #3f8ce8; -} -.detail-setting-h-font.native .b-font:before, -.detail-setting-h-font.disabled .b-font:before { - content: "\e600"; - color: #999999; -} -.export-to-excel-h-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.export-to-excel-h-font .b-font:before { - content: "\e600"; - color: #999999; -} -.export-to-excel-h-font:hover .b-font:before, -.export-to-excel-h-font:focus .b-font:before, -.export-to-excel-h-font.hover .b-font:before { - content: "\e600"; - color: #3f8ce8; -} -.export-to-excel-h-font.native .b-font:before, -.export-to-excel-h-font.disabled .b-font:before { - content: "\e600"; - color: #999999; -} -.widget-copy-h-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.widget-copy-h-font .b-font:before { - content: "\e610"; - color: #999999; -} -.widget-copy-h-font:hover .b-font:before, -.widget-copy-h-font:focus .b-font:before, -.widget-copy-h-font.hover .b-font:before { - content: "\e610"; - color: #3f8ce8; -} -.widget-copy-h-font.native .b-font:before, -.widget-copy-h-font.disabled .b-font:before { - content: "\e610"; - color: #999999; -} -.widget-delete-h-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.widget-delete-h-font .b-font:before { - content: "\e605"; - color: #999999; -} -.widget-delete-h-font:hover .b-font:before, -.widget-delete-h-font:focus .b-font:before, -.widget-delete-h-font.hover .b-font:before { - content: "\e605"; - color: #3f8ce8; -} -.widget-delete-h-font.native .b-font:before, -.widget-delete-h-font.disabled .b-font:before { - content: "\e605"; - color: #999999; -} -/** dashboard组件/控件 下拉列表图标字体 ~end~**/ -.tree-node-triangle-expand-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.tree-node-triangle-expand-font .b-font:before { - content: "\e608"; - color: inherit; -} -.tree-node-triangle-expand-font.native .b-font:before, -.tree-node-triangle-expand-font.disabled .b-font:before { - content: "\e608"; - color: inherit; -} -.tree-node-triangle-collapse-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.tree-node-triangle-collapse-font .b-font:before { - content: "\e607"; - color: inherit; -} -.tree-node-triangle-collapse-font.native .b-font:before, -.tree-node-triangle-collapse-font.disabled .b-font:before { - content: "\e607"; - color: inherit; -} -.row-pre-page-h-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.row-pre-page-h-font .b-font:before { - content: "\e6be"; - color: inherit; -} -.row-pre-page-h-font:hover .b-font:before, -.row-pre-page-h-font:focus .b-font:before, -.row-pre-page-h-font.hover .b-font:before { - content: "\e6be"; - color: inherit; -} -.row-pre-page-h-font.native .b-font:before, -.row-pre-page-h-font.disabled .b-font:before { - content: "\e6be"; - color: inherit; -} -.row-next-page-h-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.row-next-page-h-font .b-font:before { - content: "\e6bd"; - color: inherit; -} -.row-next-page-h-font:hover .b-font:before, -.row-next-page-h-font:focus .b-font:before, -.row-next-page-h-font.hover .b-font:before { - content: "\e6bd"; - color: inherit; -} -.row-next-page-h-font.native .b-font:before, -.row-next-page-h-font.disabled .b-font:before { - content: "\e6bd"; - color: inherit; -} -.column-pre-page-h-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.column-pre-page-h-font .b-font:before { - content: "\e6bc"; - color: inherit; -} -.column-pre-page-h-font:hover .b-font:before, -.column-pre-page-h-font:focus .b-font:before, -.column-pre-page-h-font.hover .b-font:before { - content: "\e6bc"; - color: inherit; -} -.column-pre-page-h-font.native .b-font:before, -.column-pre-page-h-font.disabled .b-font:before { - content: "\e6bc"; - color: inherit; -} -.column-next-page-h-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.column-next-page-h-font .b-font:before { - content: "\e6bb"; - color: inherit; -} -.column-next-page-h-font:hover .b-font:before, -.column-next-page-h-font:focus .b-font:before, -.column-next-page-h-font.hover .b-font:before { - content: "\e6bb"; - color: inherit; -} -.column-next-page-h-font.native .b-font:before, -.column-next-page-h-font.disabled .b-font:before { - content: "\e6bb"; - color: inherit; -} -.trigger-triangle-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.trigger-triangle-font .b-font:before { - content: "\e66a"; - color: #999999; -} -.trigger-triangle-font:hover .b-font:before, -.trigger-triangle-font:focus .b-font:before, -.trigger-triangle-font.hover .b-font:before { - content: "\e66a"; - color: #999999; -} -.trigger-triangle-font:active .b-font:before, -.trigger-triangle-font.active .b-font:before { - content: "\e66a"; - color: #3f8ce8; -} -.trigger-triangle-font.native .b-font:before, -.trigger-triangle-font.disabled .b-font:before { - content: "\e66a"; - color: #999999; -} -.widget-date-next-h-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.widget-date-next-h-font .b-font:before { - content: "\e62f"; - color: inherit; -} -.widget-date-next-h-font:hover .b-font:before, -.widget-date-next-h-font:focus .b-font:before, -.widget-date-next-h-font.hover .b-font:before { - content: "\e62f"; - color: inherit; -} -.widget-date-next-h-font.native .b-font:before, -.widget-date-next-h-font.disabled .b-font:before { - content: "\e62f"; - color: inherit; -} -.widget-date-pre-h-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.widget-date-pre-h-font .b-font:before { - content: "\e62e"; - color: inherit; -} -.widget-date-pre-h-font:hover .b-font:before, -.widget-date-pre-h-font:focus .b-font:before, -.widget-date-pre-h-font.hover .b-font:before { - content: "\e62e"; - color: inherit; -} -.widget-date-pre-h-font.native .b-font:before, -.widget-date-pre-h-font.disabled .b-font:before { - content: "\e62e"; - color: inherit; -} -.widget-date-h-change-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.widget-date-h-change-font .b-font:before { - content: "\e660"; - color: inherit; -} -.widget-date-h-change-font:hover .b-font:before, -.widget-date-h-change-font:focus .b-font:before, -.widget-date-h-change-font.hover .b-font:before { - content: "\e660"; - color: inherit; -} -.widget-date-h-change-font.native .b-font:before, -.widget-date-h-change-font.disabled .b-font:before { - content: "\e660"; - color: inherit; -} -.pull-down-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.pull-down-font .b-font:before { - content: "\e608"; - color: inherit; -} -.pull-down-font.native .b-font:before, -.pull-down-font.disabled .b-font:before { - content: "\e608"; - color: inherit; -} -.pull-down-h-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.pull-down-h-font .b-font:before { - content: "\e608"; - color: inherit; -} -.pull-down-h-font:hover .b-font:before, -.pull-down-h-font:focus .b-font:before, -.pull-down-h-font.hover .b-font:before { - content: "\e608"; - color: inherit; -} -.pull-down-h-font.native .b-font:before, -.pull-down-h-font.disabled .b-font:before { - content: "\e608"; - color: inherit; -} -.pull-down-ha-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.pull-down-ha-font .b-font:before { - content: "\e608"; - color: inherit; -} -.pull-down-ha-font:hover .b-font:before, -.pull-down-ha-font:focus .b-font:before, -.pull-down-ha-font.hover .b-font:before { - content: "\e608"; - color: inherit; -} -.pull-down-ha-font:active .b-font:before, -.pull-down-ha-font.active .b-font:before { - content: "\e608"; - color: #3f8ce8; -} -.pull-down-ha-font.native .b-font:before, -.pull-down-ha-font.disabled .b-font:before { - content: "\e608"; - color: inherit; -} -.delete-field-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.delete-field-font .b-font:before { - content: "\e605"; - color: inherit; -} -.delete-field-font.native .b-font:before, -.delete-field-font.disabled .b-font:before { - content: "\e605"; - color: inherit; -} -.delete-field-h-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.delete-field-h-font .b-font:before { - content: "\e605"; - color: inherit; -} -.delete-field-h-font:hover .b-font:before, -.delete-field-h-font:focus .b-font:before, -.delete-field-h-font.hover .b-font:before { - content: "\e605"; - color: inherit; -} -.delete-field-h-font.native .b-font:before, -.delete-field-h-font.disabled .b-font:before { - content: "\e605"; - color: inherit; -} -.delete-field-ha-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.delete-field-ha-font .b-font:before { - content: "\e605"; - color: inherit; -} -.delete-field-ha-font:hover .b-font:before, -.delete-field-ha-font:focus .b-font:before, -.delete-field-ha-font.hover .b-font:before { - content: "\e605"; - color: inherit; -} -.delete-field-ha-font:active .b-font:before, -.delete-field-ha-font.active .b-font:before { - content: "\e605"; - color: #3f8ce8; -} -.delete-field-ha-font.native .b-font:before, -.delete-field-ha-font.disabled .b-font:before { - content: "\e605"; - color: inherit; -} -.toolbar-save-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.toolbar-save-font .b-font:before { - content: "\e617"; - color: inherit; -} -.toolbar-save-font:hover .b-font:before, -.toolbar-save-font:focus .b-font:before, -.toolbar-save-font.hover .b-font:before { - content: "\e617"; - color: inherit; -} -.toolbar-save-font.native .b-font:before, -.toolbar-save-font.disabled .b-font:before { - content: "\e617"; - color: inherit; -} -.toolbar-undo-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.toolbar-undo-font .b-font:before { - content: "\e619"; - color: inherit; -} -.toolbar-undo-font:hover .b-font:before, -.toolbar-undo-font:focus .b-font:before, -.toolbar-undo-font.hover .b-font:before { - content: "\e619"; - color: inherit; -} -.toolbar-undo-font.native .b-font:before, -.toolbar-undo-font.disabled .b-font:before { - content: "\e619"; - color: inherit; -} -.toolbar-redo-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.toolbar-redo-font .b-font:before { - content: "\e625"; - color: inherit; -} -.toolbar-redo-font:hover .b-font:before, -.toolbar-redo-font:focus .b-font:before, -.toolbar-redo-font.hover .b-font:before { - content: "\e625"; - color: inherit; -} -.toolbar-redo-font.native .b-font:before, -.toolbar-redo-font.disabled .b-font:before { - content: "\e625"; - color: inherit; -} -.toolbar-edit-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.toolbar-edit-font .b-font:before { - content: "\e631"; - color: inherit; -} -.toolbar-edit-font:hover .b-font:before, -.toolbar-edit-font:focus .b-font:before, -.toolbar-edit-font.hover .b-font:before { - content: "\e631"; - color: inherit; -} -.toolbar-edit-font.native .b-font:before, -.toolbar-edit-font.disabled .b-font:before { - content: "\e631"; - color: inherit; -} -.toolbar-preview-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.toolbar-preview-font .b-font:before { - content: "\e65f"; - color: inherit; -} -.toolbar-preview-font:hover .b-font:before, -.toolbar-preview-font:focus .b-font:before, -.toolbar-preview-font.hover .b-font:before { - content: "\e65f"; - color: inherit; -} -.toolbar-preview-font.native .b-font:before, -.toolbar-preview-font.disabled .b-font:before { - content: "\e65f"; - color: inherit; -} -.chart-table-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.chart-table-font .b-font:before { - content: "\e60e"; - color: inherit; -} -.chart-table-font:hover .b-font:before, -.chart-table-font:focus .b-font:before, -.chart-table-font.hover .b-font:before { - content: "\e60e"; - color: inherit; -} -.chart-table-font:active .b-font:before, -.chart-table-font.active .b-font:before { - content: "\e60e"; - color: #3f8ce8; -} -.chart-table-font.native .b-font:before, -.chart-table-font.disabled .b-font:before { - content: "\e60e"; - color: inherit; -} -.chart-axis-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.chart-axis-font .b-font:before { - content: "\e626"; - color: inherit; -} -.chart-axis-font:hover .b-font:before, -.chart-axis-font:focus .b-font:before, -.chart-axis-font.hover .b-font:before { - content: "\e626"; - color: inherit; -} -.chart-axis-font:active .b-font:before, -.chart-axis-font.active .b-font:before { - content: "\e626"; - color: #3f8ce8; -} -.chart-axis-font.native .b-font:before, -.chart-axis-font.disabled .b-font:before { - content: "\e626"; - color: inherit; -} -.chart-bar-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.chart-bar-font .b-font:before { - content: "\e620"; - color: inherit; -} -.chart-bar-font:hover .b-font:before, -.chart-bar-font:focus .b-font:before, -.chart-bar-font.hover .b-font:before { - content: "\e620"; - color: inherit; -} -.chart-bar-font:active .b-font:before, -.chart-bar-font.active .b-font:before { - content: "\e620"; - color: #3f8ce8; -} -.chart-bar-font.native .b-font:before, -.chart-bar-font.disabled .b-font:before { - content: "\e620"; - color: inherit; -} -.chart-accumulate-bar-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.chart-accumulate-bar-font .b-font:before { - content: "\e60a"; - color: inherit; -} -.chart-accumulate-bar-font:hover .b-font:before, -.chart-accumulate-bar-font:focus .b-font:before, -.chart-accumulate-bar-font.hover .b-font:before { - content: "\e60a"; - color: inherit; -} -.chart-accumulate-bar-font:active .b-font:before, -.chart-accumulate-bar-font.active .b-font:before { - content: "\e60a"; - color: #3f8ce8; -} -.chart-accumulate-bar-font.native .b-font:before, -.chart-accumulate-bar-font.disabled .b-font:before { - content: "\e60a"; - color: inherit; -} -.chart-pie-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.chart-pie-font .b-font:before { - content: "\e618"; - color: inherit; -} -.chart-pie-font:hover .b-font:before, -.chart-pie-font:focus .b-font:before, -.chart-pie-font.hover .b-font:before { - content: "\e618"; - color: inherit; -} -.chart-pie-font:active .b-font:before, -.chart-pie-font.active .b-font:before { - content: "\e618"; - color: #3f8ce8; -} -.chart-pie-font.native .b-font:before, -.chart-pie-font.disabled .b-font:before { - content: "\e618"; - color: inherit; -} -.chart-map-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.chart-map-font .b-font:before { - content: "\e62c"; - color: inherit; -} -.chart-map-font:hover .b-font:before, -.chart-map-font:focus .b-font:before, -.chart-map-font.hover .b-font:before { - content: "\e62c"; - color: inherit; -} -.chart-map-font:active .b-font:before, -.chart-map-font.active .b-font:before { - content: "\e62c"; - color: #3f8ce8; -} -.chart-map-font.native .b-font:before, -.chart-map-font.disabled .b-font:before { - content: "\e62c"; - color: inherit; -} -.chart-dashboard-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.chart-dashboard-font .b-font:before { - content: "\e623"; - color: inherit; -} -.chart-dashboard-font:hover .b-font:before, -.chart-dashboard-font:focus .b-font:before, -.chart-dashboard-font.hover .b-font:before { - content: "\e623"; - color: inherit; -} -.chart-dashboard-font:active .b-font:before, -.chart-dashboard-font.active .b-font:before { - content: "\e623"; - color: #3f8ce8; -} -.chart-dashboard-font.native .b-font:before, -.chart-dashboard-font.disabled .b-font:before { - content: "\e623"; - color: inherit; -} -.chart-doughnut-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.chart-doughnut-font .b-font:before { - content: "\e624"; - color: inherit; -} -.chart-doughnut-font:hover .b-font:before, -.chart-doughnut-font:focus .b-font:before, -.chart-doughnut-font.hover .b-font:before { - content: "\e624"; - color: inherit; -} -.chart-doughnut-font:active .b-font:before, -.chart-doughnut-font.active .b-font:before { - content: "\e624"; - color: #3f8ce8; -} -.chart-doughnut-font.native .b-font:before, -.chart-doughnut-font.disabled .b-font:before { - content: "\e624"; - color: inherit; -} -.chart-detail-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.chart-detail-font .b-font:before { - content: "\e615"; - color: inherit; -} -.chart-detail-font:hover .b-font:before, -.chart-detail-font:focus .b-font:before, -.chart-detail-font.hover .b-font:before { - content: "\e615"; - color: inherit; -} -.chart-detail-font:active .b-font:before, -.chart-detail-font.active .b-font:before { - content: "\e615"; - color: #3f8ce8; -} -.chart-detail-font.native .b-font:before, -.chart-detail-font.disabled .b-font:before { - content: "\e615"; - color: inherit; -} -.chart-more-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.chart-more-font .b-font:before { - content: "\e60d"; - color: inherit; -} -.chart-more-font:hover .b-font:before, -.chart-more-font:focus .b-font:before, -.chart-more-font.hover .b-font:before { - content: "\e60d"; - color: inherit; -} -.chart-more-font:active .b-font:before, -.chart-more-font.active .b-font:before { - content: "\e60d"; - color: #3f8ce8; -} -.chart-more-font.native .b-font:before, -.chart-more-font.disabled .b-font:before { - content: "\e60d"; - color: inherit; -} -.chart-bubble-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.chart-bubble-font .b-font:before { - content: "\e62a"; - color: inherit; -} -.chart-bubble-font:hover .b-font:before, -.chart-bubble-font:focus .b-font:before, -.chart-bubble-font.hover .b-font:before { - content: "\e62a"; - color: inherit; -} -.chart-bubble-font:active .b-font:before, -.chart-bubble-font.active .b-font:before { - content: "\e62a"; - color: #3f8ce8; -} -.chart-bubble-font.native .b-font:before, -.chart-bubble-font.disabled .b-font:before { - content: "\e62a"; - color: inherit; -} -.chart-scatter-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.chart-scatter-font .b-font:before { - content: "\e61d"; - color: inherit; -} -.chart-scatter-font:hover .b-font:before, -.chart-scatter-font:focus .b-font:before, -.chart-scatter-font.hover .b-font:before { - content: "\e61d"; - color: inherit; -} -.chart-scatter-font:active .b-font:before, -.chart-scatter-font.active .b-font:before { - content: "\e61d"; - color: #3f8ce8; -} -.chart-scatter-font.native .b-font:before, -.chart-scatter-font.disabled .b-font:before { - content: "\e61d"; - color: inherit; -} -.chart-radar-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.chart-radar-font .b-font:before { - content: "\e614"; - color: inherit; -} -.chart-radar-font:hover .b-font:before, -.chart-radar-font:focus .b-font:before, -.chart-radar-font.hover .b-font:before { - content: "\e614"; - color: inherit; -} -.chart-radar-font:active .b-font:before, -.chart-radar-font.active .b-font:before { - content: "\e614"; - color: #3f8ce8; -} -.chart-radar-font.native .b-font:before, -.chart-radar-font.disabled .b-font:before { - content: "\e614"; - color: inherit; -} -.chart-content-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.chart-content-font .b-font:before { - content: "\e621"; - color: inherit; -} -.chart-content-font:hover .b-font:before, -.chart-content-font:focus .b-font:before, -.chart-content-font.hover .b-font:before { - content: "\e621"; - color: inherit; -} -.chart-content-font:active .b-font:before, -.chart-content-font.active .b-font:before { - content: "\e621"; - color: #3f8ce8; -} -.chart-content-font.native .b-font:before, -.chart-content-font.disabled .b-font:before { - content: "\e621"; - color: inherit; -} -.chart-image-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.chart-image-font .b-font:before { - content: "\e68d"; - color: inherit; -} -.chart-image-font:hover .b-font:before, -.chart-image-font:focus .b-font:before, -.chart-image-font.hover .b-font:before { - content: "\e68d"; - color: inherit; -} -.chart-image-font:active .b-font:before, -.chart-image-font.active .b-font:before { - content: "\e68d"; - color: #3f8ce8; -} -.chart-image-font.native .b-font:before, -.chart-image-font.disabled .b-font:before { - content: "\e68d"; - color: inherit; -} -.chart-web-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.chart-web-font .b-font:before { - content: "\e68c"; - color: inherit; -} -.chart-web-font:hover .b-font:before, -.chart-web-font:focus .b-font:before, -.chart-web-font.hover .b-font:before { - content: "\e68c"; - color: inherit; -} -.chart-web-font:active .b-font:before, -.chart-web-font.active .b-font:before { - content: "\e68c"; - color: #3f8ce8; -} -.chart-web-font.native .b-font:before, -.chart-web-font.disabled .b-font:before { - content: "\e68c"; - color: inherit; -} -.chart-string-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.chart-string-font .b-font:before { - content: "\e622"; - color: inherit; -} -.chart-string-font:hover .b-font:before, -.chart-string-font:focus .b-font:before, -.chart-string-font.hover .b-font:before { - content: "\e622"; - color: inherit; -} -.chart-string-font:active .b-font:before, -.chart-string-font.active .b-font:before { - content: "\e622"; - color: #3f8ce8; -} -.chart-string-font.native .b-font:before, -.chart-string-font.disabled .b-font:before { - content: "\e622"; - color: inherit; -} -.chart-number-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.chart-number-font .b-font:before { - content: "\e61f"; - color: inherit; -} -.chart-number-font:hover .b-font:before, -.chart-number-font:focus .b-font:before, -.chart-number-font.hover .b-font:before { - content: "\e61f"; - color: inherit; -} -.chart-number-font:active .b-font:before, -.chart-number-font.active .b-font:before { - content: "\e61f"; - color: #3f8ce8; -} -.chart-number-font.native .b-font:before, -.chart-number-font.disabled .b-font:before { - content: "\e61f"; - color: inherit; -} -.chart-tree-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.chart-tree-font .b-font:before { - content: "\e61e"; - color: inherit; -} -.chart-tree-font:hover .b-font:before, -.chart-tree-font:focus .b-font:before, -.chart-tree-font.hover .b-font:before { - content: "\e61e"; - color: inherit; -} -.chart-tree-font:active .b-font:before, -.chart-tree-font.active .b-font:before { - content: "\e61e"; - color: #3f8ce8; -} -.chart-tree-font.native .b-font:before, -.chart-tree-font.disabled .b-font:before { - content: "\e61e"; - color: inherit; -} -.chart-date-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.chart-date-font .b-font:before { - content: "\e61b"; - color: inherit; -} -.chart-date-font:hover .b-font:before, -.chart-date-font:focus .b-font:before, -.chart-date-font.hover .b-font:before { - content: "\e61b"; - color: inherit; -} -.chart-date-font:active .b-font:before, -.chart-date-font.active .b-font:before { - content: "\e61b"; - color: #3f8ce8; -} -.chart-date-font.native .b-font:before, -.chart-date-font.disabled .b-font:before { - content: "\e61b"; - color: inherit; -} -.chart-year-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.chart-year-font .b-font:before { - content: "\e628"; - color: inherit; -} -.chart-year-font:hover .b-font:before, -.chart-year-font:focus .b-font:before, -.chart-year-font.hover .b-font:before { - content: "\e628"; - color: inherit; -} -.chart-year-font:active .b-font:before, -.chart-year-font.active .b-font:before { - content: "\e628"; - color: #3f8ce8; -} -.chart-year-font.native .b-font:before, -.chart-year-font.disabled .b-font:before { - content: "\e628"; - color: inherit; -} -.chart-month-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.chart-month-font .b-font:before { - content: "\e627"; - color: inherit; -} -.chart-month-font:hover .b-font:before, -.chart-month-font:focus .b-font:before, -.chart-month-font.hover .b-font:before { - content: "\e627"; - color: inherit; -} -.chart-month-font:active .b-font:before, -.chart-month-font.active .b-font:before { - content: "\e627"; - color: #3f8ce8; -} -.chart-month-font.native .b-font:before, -.chart-month-font.disabled .b-font:before { - content: "\e627"; - color: inherit; -} -.chart-quarter-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.chart-quarter-font .b-font:before { - content: "\e629"; - color: inherit; -} -.chart-quarter-font:hover .b-font:before, -.chart-quarter-font:focus .b-font:before, -.chart-quarter-font.hover .b-font:before { - content: "\e629"; - color: inherit; -} -.chart-quarter-font:active .b-font:before, -.chart-quarter-font.active .b-font:before { - content: "\e629"; - color: #3f8ce8; -} -.chart-quarter-font.native .b-font:before, -.chart-quarter-font.disabled .b-font:before { - content: "\e629"; - color: inherit; -} -.chart-ymd-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.chart-ymd-font .b-font:before { - content: "\e61c"; - color: inherit; -} -.chart-ymd-font:hover .b-font:before, -.chart-ymd-font:focus .b-font:before, -.chart-ymd-font.hover .b-font:before { - content: "\e61c"; - color: inherit; -} -.chart-ymd-font:active .b-font:before, -.chart-ymd-font.active .b-font:before { - content: "\e61c"; - color: #3f8ce8; -} -.chart-ymd-font.native .b-font:before, -.chart-ymd-font.disabled .b-font:before { - content: "\e61c"; - color: inherit; -} -.chart-date-range-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.chart-date-range-font .b-font:before { - content: "\e616"; - color: inherit; -} -.chart-date-range-font:hover .b-font:before, -.chart-date-range-font:focus .b-font:before, -.chart-date-range-font.hover .b-font:before { - content: "\e616"; - color: inherit; -} -.chart-date-range-font:active .b-font:before, -.chart-date-range-font.active .b-font:before { - content: "\e616"; - color: #3f8ce8; -} -.chart-date-range-font.native .b-font:before, -.chart-date-range-font.disabled .b-font:before { - content: "\e616"; - color: inherit; -} -.chart-general-query-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.chart-general-query-font .b-font:before { - content: "\e62b"; - color: inherit; -} -.chart-general-query-font:hover .b-font:before, -.chart-general-query-font:focus .b-font:before, -.chart-general-query-font.hover .b-font:before { - content: "\e62b"; - color: inherit; -} -.chart-general-query-font:active .b-font:before, -.chart-general-query-font.active .b-font:before { - content: "\e62b"; - color: #3f8ce8; -} -.chart-general-query-font.native .b-font:before, -.chart-general-query-font.disabled .b-font:before { - content: "\e62b"; - color: inherit; -} -.chart-query-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.chart-query-font .b-font:before { - content: "\e609"; - color: inherit; -} -.chart-query-font:hover .b-font:before, -.chart-query-font:focus .b-font:before, -.chart-query-font.hover .b-font:before { - content: "\e609"; - color: inherit; -} -.chart-query-font:active .b-font:before, -.chart-query-font.active .b-font:before { - content: "\e609"; - color: #3f8ce8; -} -.chart-query-font.native .b-font:before, -.chart-query-font.disabled .b-font:before { - content: "\e609"; - color: inherit; -} -.chart-reset-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.chart-reset-font .b-font:before { - content: "\e61a"; - color: inherit; -} -.chart-reset-font:hover .b-font:before, -.chart-reset-font:focus .b-font:before, -.chart-reset-font.hover .b-font:before { - content: "\e61a"; - color: inherit; -} -.chart-reset-font:active .b-font:before, -.chart-reset-font.active .b-font:before { - content: "\e61a"; - color: #3f8ce8; -} -.chart-reset-font.native .b-font:before, -.chart-reset-font.disabled .b-font:before { - content: "\e61a"; - color: inherit; -} -.chart-textarea-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.chart-textarea-font .b-font:before { - content: "\e622"; - color: inherit; -} -.chart-textarea-font:hover .b-font:before, -.chart-textarea-font:focus .b-font:before, -.chart-textarea-font.hover .b-font:before { - content: "\e622"; - color: inherit; -} -.chart-textarea-font:active .b-font:before, -.chart-textarea-font.active .b-font:before { - content: "\e622"; - color: #3f8ce8; -} -.chart-textarea-font.native .b-font:before, -.chart-textarea-font.disabled .b-font:before { - content: "\e622"; - color: inherit; -} -.chart-reuse-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.chart-reuse-font .b-font:before { - content: "\e60b"; - color: inherit; -} -.chart-reuse-font:hover .b-font:before, -.chart-reuse-font:focus .b-font:before, -.chart-reuse-font.hover .b-font:before { - content: "\e60b"; - color: inherit; -} -.chart-reuse-font:active .b-font:before, -.chart-reuse-font.active .b-font:before { - content: "\e60b"; - color: #3f8ce8; -} -.chart-reuse-font.native .b-font:before, -.chart-reuse-font.disabled .b-font:before { - content: "\e60b"; - color: inherit; -} -.chart-date-normal-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.chart-date-normal-font .b-font:before { - content: "\e61b"; - color: inherit; -} -.chart-date-normal-font.native .b-font:before, -.chart-date-normal-font.disabled .b-font:before { - content: "\e61b"; - color: inherit; -} -.less-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.less-font .b-font:before { - content: "\e633"; - color: inherit; -} -.less-font:hover .b-font:before, -.less-font:focus .b-font:before, -.less-font.hover .b-font:before { - content: "\e633"; - color: inherit; -} -.less-font:active .b-font:before, -.less-font.active .b-font:before { - content: "\e633"; - color: #3f8ce8; -} -.less-font.native .b-font:before, -.less-font.disabled .b-font:before { - content: "\e633"; - color: inherit; -} -.less-equal-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.less-equal-font .b-font:before { - content: "\e636"; - color: inherit; -} -.less-equal-font:hover .b-font:before, -.less-equal-font:focus .b-font:before, -.less-equal-font.hover .b-font:before { - content: "\e636"; - color: inherit; -} -.less-equal-font:active .b-font:before, -.less-equal-font.active .b-font:before { - content: "\e636"; - color: #3f8ce8; -} -.less-equal-font.native .b-font:before, -.less-equal-font.disabled .b-font:before { - content: "\e636"; - color: inherit; -} -.check-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.check-font .b-font:before { - content: "\e611"; - color: #3f8ce8; -} -.check-font.native .b-font:before, -.check-font.disabled .b-font:before { - content: "\e611"; - color: #3f8ce8; -} -.move2group-add-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.move2group-add-font .b-font:before { - content: "\e649"; - color: #3f8ce8; -} -.move2group-add-font.native .b-font:before, -.move2group-add-font.disabled .b-font:before { - content: "\e649"; - color: #3f8ce8; -} -.select-data-field-calc-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.select-data-field-calc-font .b-font:before { - content: "\e6a3"; - color: inherit; -} -.select-data-field-calc-font:hover .b-font:before, -.select-data-field-calc-font:focus .b-font:before, -.select-data-field-calc-font.hover .b-font:before { - content: "\e6a3"; - color: inherit; -} -.select-data-field-calc-font:active .b-font:before, -.select-data-field-calc-font.active .b-font:before { - content: "\e6a3"; - color: #ffffff; -} -.select-data-field-calc-font.native .b-font:before, -.select-data-field-calc-font.disabled .b-font:before { - content: "\e6a3"; - color: inherit; -} -.select-data-field-string-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.select-data-field-string-font .b-font:before { - content: "\e642"; - color: inherit; -} -.select-data-field-string-font:hover .b-font:before, -.select-data-field-string-font:focus .b-font:before, -.select-data-field-string-font.hover .b-font:before { - content: "\e642"; - color: inherit; -} -.select-data-field-string-font:active .b-font:before, -.select-data-field-string-font.active .b-font:before { - content: "\e642"; - color: #ffffff; -} -.select-data-field-string-font.native .b-font:before, -.select-data-field-string-font.disabled .b-font:before { - content: "\e642"; - color: inherit; -} -.select-data-field-number-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.select-data-field-number-font .b-font:before { - content: "\e641"; - color: inherit; -} -.select-data-field-number-font:hover .b-font:before, -.select-data-field-number-font:focus .b-font:before, -.select-data-field-number-font.hover .b-font:before { - content: "\e641"; - color: inherit; -} -.select-data-field-number-font:active .b-font:before, -.select-data-field-number-font.active .b-font:before { - content: "\e641"; - color: #ffffff; -} -.select-data-field-number-font.native .b-font:before, -.select-data-field-number-font.disabled .b-font:before { - content: "\e641"; - color: inherit; -} -.select-data-field-date-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.select-data-field-date-font .b-font:before { - content: "\e640"; - color: inherit; -} -.select-data-field-date-font:hover .b-font:before, -.select-data-field-date-font:focus .b-font:before, -.select-data-field-date-font.hover .b-font:before { - content: "\e640"; - color: inherit; -} -.select-data-field-date-font:active .b-font:before, -.select-data-field-date-font.active .b-font:before { - content: "\e640"; - color: #ffffff; -} -.select-data-field-date-font.native .b-font:before, -.select-data-field-date-font.disabled .b-font:before { - content: "\e640"; - color: inherit; -} -.select-data-field-string-group-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.select-data-field-string-group-font .b-font:before { - content: "\e642"; - color: inherit; -} -.select-data-field-string-group-font.native .b-font:before, -.select-data-field-string-group-font.disabled .b-font:before { - content: "\e642"; - color: inherit; -} -.select-data-field-number-group-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.select-data-field-number-group-font .b-font:before { - content: "\e641"; - color: inherit; -} -.select-data-field-number-group-font.native .b-font:before, -.select-data-field-number-group-font.disabled .b-font:before { - content: "\e641"; - color: inherit; -} -.select-data-field-date-group-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.select-data-field-date-group-font .b-font:before { - content: "\e640"; - color: inherit; -} -.select-data-field-date-group-font.native .b-font:before, -.select-data-field-date-group-font.disabled .b-font:before { - content: "\e640"; - color: inherit; -} -.select-data-preview-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.select-data-preview-font .b-font:before { - content: "\e65f"; - color: #999999; -} -.select-data-preview-font:hover .b-font:before, -.select-data-preview-font:focus .b-font:before, -.select-data-preview-font.hover .b-font:before { - content: "\e65f"; - color: #3f8ce8; -} -.select-data-preview-font:active .b-font:before, -.select-data-preview-font.active .b-font:before { - content: "\e65f"; - color: #3f8ce8; -} -.select-data-preview-font.native .b-font:before, -.select-data-preview-font.disabled .b-font:before { - content: "\e65f"; - color: #999999; -} -.detail-dimension-set-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.detail-dimension-set-font .b-font:before { - content: "\e678"; - color: inherit; -} -.detail-dimension-set-font:hover .b-font:before, -.detail-dimension-set-font:focus .b-font:before, -.detail-dimension-set-font.hover .b-font:before { - content: "\e678"; - color: inherit; -} -.detail-dimension-set-font.native .b-font:before, -.detail-dimension-set-font.disabled .b-font:before { - content: "\e678"; - color: inherit; -} -.detail-real-data-warning-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.detail-real-data-warning-font .b-font:before { - content: "\e64e"; - color: #f07d0a; -} -.detail-real-data-warning-font:hover .b-font:before, -.detail-real-data-warning-font:focus .b-font:before, -.detail-real-data-warning-font.hover .b-font:before { - content: "\e64e"; - color: #f07d0a; -} -.detail-real-data-warning-font.native .b-font:before, -.detail-real-data-warning-font.disabled .b-font:before { - content: "\e64e"; - color: #f07d0a; -} -.select-group-field-string-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.select-group-field-string-font .b-font:before { - content: "\e642"; - color: #3f8ce8; -} -.select-group-field-string-font:hover .b-font:before, -.select-group-field-string-font:focus .b-font:before, -.select-group-field-string-font.hover .b-font:before { - content: "\e642"; - color: #3f8ce8; -} -.select-group-field-string-font:active .b-font:before, -.select-group-field-string-font.active .b-font:before { - content: "\e642"; - color: #3f8ce8; -} -.select-group-field-string-font.native .b-font:before, -.select-group-field-string-font.disabled .b-font:before { - content: "\e642"; - color: #3f8ce8; -} -.select-group-field-number-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.select-group-field-number-font .b-font:before { - content: "\e641"; - color: #3f8ce8; -} -.select-group-field-number-font:hover .b-font:before, -.select-group-field-number-font:focus .b-font:before, -.select-group-field-number-font.hover .b-font:before { - content: "\e641"; - color: #3f8ce8; -} -.select-group-field-number-font:active .b-font:before, -.select-group-field-number-font.active .b-font:before { - content: "\e641"; - color: #3f8ce8; -} -.select-group-field-number-font.native .b-font:before, -.select-group-field-number-font.disabled .b-font:before { - content: "\e641"; - color: #3f8ce8; -} -.select-group-field-date-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.select-group-field-date-font .b-font:before { - content: "\e640"; - color: #3f8ce8; -} -.select-group-field-date-font:hover .b-font:before, -.select-group-field-date-font:focus .b-font:before, -.select-group-field-date-font.hover .b-font:before { - content: "\e640"; - color: #3f8ce8; -} -.select-group-field-date-font:active .b-font:before, -.select-group-field-date-font.active .b-font:before { - content: "\e640"; - color: #3f8ce8; -} -.select-group-field-date-font.native .b-font:before, -.select-group-field-date-font.disabled .b-font:before { - content: "\e640"; - color: #3f8ce8; -} -.dashboard-widget-combo-detail-set-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.dashboard-widget-combo-detail-set-font .b-font:before { - content: "\e634"; - color: inherit; -} -.dashboard-widget-combo-detail-set-font:hover .b-font:before, -.dashboard-widget-combo-detail-set-font:focus .b-font:before, -.dashboard-widget-combo-detail-set-font.hover .b-font:before { - content: "\e634"; - color: inherit; -} -.dashboard-widget-combo-detail-set-font.native .b-font:before, -.dashboard-widget-combo-detail-set-font.disabled .b-font:before { - content: "\e634"; - color: inherit; -} -.group-add-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.group-add-font .b-font:before { - content: "\e649"; - color: #999999; -} -.group-add-font.native .b-font:before, -.group-add-font.disabled .b-font:before { - content: "\e649"; - color: #999999; -} -.sortable-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.sortable-font .b-font:before { - content: "\e63b"; - color: inherit; -} -.sortable-font.native .b-font:before, -.sortable-font.disabled .b-font:before { - content: "\e63b"; - color: inherit; -} -.text-bold-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.text-bold-font .b-font:before { - content: "\e64d"; - color: inherit; -} -.text-bold-font.native .b-font:before, -.text-bold-font.disabled .b-font:before { - content: "\e64d"; - color: inherit; -} -.text-italic-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.text-italic-font .b-font:before { - content: "\e656"; - color: inherit; -} -.text-italic-font.native .b-font:before, -.text-italic-font.disabled .b-font:before { - content: "\e656"; - color: inherit; -} -.text-underline-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.text-underline-font .b-font:before { - content: "\e650"; - color: inherit; -} -.text-underline-font.native .b-font:before, -.text-underline-font.disabled .b-font:before { - content: "\e650"; - color: inherit; -} -.text-color-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.text-color-font .b-font:before { - content: "\e69c"; - color: inherit; -} -.text-color-font.native .b-font:before, -.text-color-font.disabled .b-font:before { - content: "\e69c"; - color: inherit; -} -.text-background-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.text-background-font .b-font:before { - content: "\e696"; - color: inherit; -} -.text-background-font.native .b-font:before, -.text-background-font.disabled .b-font:before { - content: "\e696"; - color: inherit; -} -.text-color-underline-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.text-color-underline-font .b-font:before { - content: "\e69d"; - color: inherit; -} -.text-color-underline-font.native .b-font:before, -.text-color-underline-font.disabled .b-font:before { - content: "\e69d"; - color: inherit; -} -.text-align-left-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.text-align-left-font .b-font:before { - content: "\e654"; - color: inherit; -} -.text-align-left-font.native .b-font:before, -.text-align-left-font.disabled .b-font:before { - content: "\e654"; - color: inherit; -} -.text-align-center-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.text-align-center-font .b-font:before { - content: "\e64f"; - color: inherit; -} -.text-align-center-font.native .b-font:before, -.text-align-center-font.disabled .b-font:before { - content: "\e64f"; - color: inherit; -} -.text-align-right-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.text-align-right-font .b-font:before { - content: "\e651"; - color: inherit; -} -.text-align-right-font.native .b-font:before, -.text-align-right-font.disabled .b-font:before { - content: "\e651"; - color: inherit; -} -.img-upload-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.img-upload-font .b-font:before { - content: "\e6ba"; - color: #3f8ce8; -} -.img-upload-font.native .b-font:before, -.img-upload-font.disabled .b-font:before { - content: "\e6ba"; - color: #3f8ce8; -} -.img-size-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.img-size-font .b-font:before { - content: "\e68b"; - color: #3f8ce8; -} -.img-size-font.native .b-font:before, -.img-size-font.disabled .b-font:before { - content: "\e68b"; - color: #3f8ce8; -} -.img-href-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.img-href-font .b-font:before { - content: "\e688"; - color: #3f8ce8; -} -.img-href-font.native .b-font:before, -.img-href-font.disabled .b-font:before { - content: "\e688"; - color: #3f8ce8; -} -.img-shutdown-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.img-shutdown-font .b-font:before { - content: "\e689"; - color: #3f8ce8; -} -.img-shutdown-font.native .b-font:before, -.img-shutdown-font.disabled .b-font:before { - content: "\e689"; - color: #3f8ce8; -} -.move-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.move-font .b-font:before { - content: "\e65e"; - color: inherit; -} -.move-font.native .b-font:before, -.move-font.disabled .b-font:before { - content: "\e65e"; - color: inherit; -} -.share-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.share-font .b-font:before { - content: "\e65a"; - color: inherit; -} -.share-font.native .b-font:before, -.share-font.disabled .b-font:before { - content: "\e65a"; - color: inherit; -} -.new-file-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.new-file-font .b-font:before { - content: "\e65d"; - color: inherit; -} -.new-file-font.native .b-font:before, -.new-file-font.disabled .b-font:before { - content: "\e65d"; - color: inherit; -} -.file-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.file-font .b-font:before { - content: "\e65b"; - color: #fcc550; -} -.file-font.native .b-font:before, -.file-font.disabled .b-font:before { - content: "\e65b"; - color: #fcc550; -} -.folder-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.folder-font .b-font:before { - content: "\e65c"; - color: #3f8ce8; -} -.folder-font.native .b-font:before, -.folder-font.disabled .b-font:before { - content: "\e65c"; - color: #3f8ce8; -} -.letter-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.letter-font .b-font:before { - content: "\e659"; - color: inherit; -} -.letter-font:hover .b-font:before, -.letter-font:focus .b-font:before, -.letter-font.hover .b-font:before { - content: "\e659"; - color: inherit; -} -.letter-font:active .b-font:before, -.letter-font.active .b-font:before { - content: "\e659"; - color: #3f8ce8; -} -.letter-font.native .b-font:before, -.letter-font.disabled .b-font:before { - content: "\e659"; - color: inherit; -} -.time-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.time-font .b-font:before { - content: "\e658"; - color: inherit; -} -.time-font:hover .b-font:before, -.time-font:focus .b-font:before, -.time-font.hover .b-font:before { - content: "\e658"; - color: inherit; -} -.time-font:active .b-font:before, -.time-font.active .b-font:before { - content: "\e658"; - color: #3f8ce8; -} -.time-font.native .b-font:before, -.time-font.disabled .b-font:before { - content: "\e658"; - color: inherit; -} -.rename-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.rename-font .b-font:before { - content: "\e687"; - color: inherit; -} -.rename-font.native .b-font:before, -.rename-font.disabled .b-font:before { - content: "\e687"; - color: inherit; -} -.delete-template-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.delete-template-font .b-font:before { - content: "\e605"; - color: #999999; -} -.delete-template-font.native .b-font:before, -.delete-template-font.disabled .b-font:before { - content: "\e605"; - color: #999999; -} -.real-time-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.real-time-font .b-font:before { - content: "\e6af"; - color: #fcc550; -} -.real-time-font.native .b-font:before, -.real-time-font.disabled .b-font:before { - content: "\e6af"; - color: #fcc550; -} -.data-source-table-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.data-source-table-font .b-font:before { - content: "\e67b"; - color: #3f8ce8; -} -.data-source-table-font:hover .b-font:before, -.data-source-table-font:focus .b-font:before, -.data-source-table-font.hover .b-font:before { - content: "\e67b"; - color: #3f8ce8; -} -.data-source-table-font:active .b-font:before, -.data-source-table-font.active .b-font:before { - content: "\e67b"; - color: #ffffff; -} -.data-source-table-font.native .b-font:before, -.data-source-table-font.disabled .b-font:before { - content: "\e67b"; - color: #3f8ce8; -} -.etl-table-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.etl-table-font .b-font:before { - content: "\e680"; - color: #3f8ce8; -} -.etl-table-font:hover .b-font:before, -.etl-table-font:focus .b-font:before, -.etl-table-font.hover .b-font:before { - content: "\e680"; - color: #3f8ce8; -} -.etl-table-font:active .b-font:before, -.etl-table-font.active .b-font:before { - content: "\e680"; - color: #ffffff; -} -.etl-table-font.native .b-font:before, -.etl-table-font.disabled .b-font:before { - content: "\e680"; - color: #3f8ce8; -} -.excel-table-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.excel-table-font .b-font:before { - content: "\e682"; - color: #3f8ce8; -} -.excel-table-font:hover .b-font:before, -.excel-table-font:focus .b-font:before, -.excel-table-font.hover .b-font:before { - content: "\e682"; - color: #3f8ce8; -} -.excel-table-font:active .b-font:before, -.excel-table-font.active .b-font:before { - content: "\e682"; - color: #ffffff; -} -.excel-table-font.native .b-font:before, -.excel-table-font.disabled .b-font:before { - content: "\e682"; - color: #3f8ce8; -} -.sql-table-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.sql-table-font .b-font:before { - content: "\e681"; - color: #3f8ce8; -} -.sql-table-font:hover .b-font:before, -.sql-table-font:focus .b-font:before, -.sql-table-font.hover .b-font:before { - content: "\e681"; - color: #3f8ce8; -} -.sql-table-font:active .b-font:before, -.sql-table-font.active .b-font:before { - content: "\e681"; - color: #ffffff; -} -.sql-table-font.native .b-font:before, -.sql-table-font.disabled .b-font:before { - content: "\e681"; - color: #3f8ce8; -} -.refresh-table-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.refresh-table-font .b-font:before { - content: "\e683"; - color: inherit; -} -.refresh-table-font.native .b-font:before, -.refresh-table-font.disabled .b-font:before { - content: "\e683"; - color: inherit; -} -.recover-chart-font-hightlight .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.recover-chart-font-hightlight .b-font:before { - content: "\e6b4"; - color: inherit; -} -.recover-chart-font-hightlight.native .b-font:before, -.recover-chart-font-hightlight.disabled .b-font:before { - content: "\e6b4"; - color: inherit; -} -.tables-tile-view-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.tables-tile-view-font .b-font:before { - content: "\e685"; - color: inherit; -} -.tables-tile-view-font:hover .b-font:before, -.tables-tile-view-font:focus .b-font:before, -.tables-tile-view-font.hover .b-font:before { - content: "\e685"; - color: inherit; -} -.tables-tile-view-font:active .b-font:before, -.tables-tile-view-font.active .b-font:before { - content: "\e685"; - color: #ffffff; -} -.tables-tile-view-font.native .b-font:before, -.tables-tile-view-font.disabled .b-font:before { - content: "\e685"; - color: inherit; -} -.tables-relation-view-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.tables-relation-view-font .b-font:before { - content: "\e684"; - color: inherit; -} -.tables-relation-view-font:hover .b-font:before, -.tables-relation-view-font:focus .b-font:before, -.tables-relation-view-font.hover .b-font:before { - content: "\e684"; - color: inherit; -} -.tables-relation-view-font:active .b-font:before, -.tables-relation-view-font.active .b-font:before { - content: "\e684"; - color: #ffffff; -} -.tables-relation-view-font.native .b-font:before, -.tables-relation-view-font.disabled .b-font:before { - content: "\e684"; - color: inherit; -} -.add-new-table-pull-down-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.add-new-table-pull-down-font .b-font:before { - content: "\e62d"; - color: #ffffff; -} -.add-new-table-pull-down-font.native .b-font:before, -.add-new-table-pull-down-font.disabled .b-font:before { - content: "\e62d"; - color: #ffffff; -} -.data-link-check-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.data-link-check-font .b-font:before { - content: "\e611"; - color: #ffffff; -} -.data-link-check-font:hover .b-font:before, -.data-link-check-font:focus .b-font:before, -.data-link-check-font.hover .b-font:before { - content: "\e611"; - color: #999999; -} -.data-link-check-font:active .b-font:before, -.data-link-check-font.active .b-font:before { - content: "\e611"; - color: #3f8ce8; -} -.data-link-check-font.native .b-font:before, -.data-link-check-font.disabled .b-font:before { - content: "\e611"; - color: #ffffff; -} -.edit-set-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.edit-set-font .b-font:before { - content: "\e634"; - color: inherit; -} -.edit-set-font:hover .b-font:before, -.edit-set-font:focus .b-font:before, -.edit-set-font.hover .b-font:before { - content: "\e634"; - color: inherit; -} -.edit-set-font.native .b-font:before, -.edit-set-font.disabled .b-font:before { - content: "\e634"; - color: inherit; -} -.new-analysis-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.new-analysis-font .b-font:before { - content: "\e692"; - color: #ffffff; -} -.new-analysis-font:hover .b-font:before, -.new-analysis-font:focus .b-font:before, -.new-analysis-font.hover .b-font:before { - content: "\e692"; - color: #ffffff; -} -.new-analysis-font.native .b-font:before, -.new-analysis-font.disabled .b-font:before { - content: "\e692"; - color: #ffffff; -} -.data-config-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.data-config-font .b-font:before { - content: "\e693"; - color: #ffffff; -} -.data-config-font:hover .b-font:before, -.data-config-font:focus .b-font:before, -.data-config-font.hover .b-font:before { - content: "\e693"; - color: #ffffff; -} -.data-config-font.native .b-font:before, -.data-config-font.disabled .b-font:before { - content: "\e693"; - color: #ffffff; -} -.folder-list-view .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.folder-list-view .b-font:before { - content: "\e694"; - color: inherit; -} -.folder-list-view:hover .b-font:before, -.folder-list-view:focus .b-font:before, -.folder-list-view.hover .b-font:before { - content: "\e694"; - color: inherit; -} -.folder-list-view:active .b-font:before, -.folder-list-view.active .b-font:before { - content: "\e694"; - color: #ffffff; -} -.folder-list-view.native .b-font:before, -.folder-list-view.disabled .b-font:before { - content: "\e694"; - color: inherit; -} -.folder-card-view .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.folder-card-view .b-font:before { - content: "\e685"; - color: inherit; -} -.folder-card-view:hover .b-font:before, -.folder-card-view:focus .b-font:before, -.folder-card-view.hover .b-font:before { - content: "\e685"; - color: inherit; -} -.folder-card-view:active .b-font:before, -.folder-card-view.active .b-font:before { - content: "\e685"; - color: #ffffff; -} -.folder-card-view.native .b-font:before, -.folder-card-view.disabled .b-font:before { - content: "\e685"; - color: inherit; -} -.item-check-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.item-check-font .b-font:before { - content: "\e611"; - color: #ffffff; -} -.item-check-font:hover .b-font:before, -.item-check-font:focus .b-font:before, -.item-check-font.hover .b-font:before { - content: "\e611"; - color: #999999; -} -.item-check-font:active .b-font:before, -.item-check-font.active .b-font:before { - content: "\e611"; - color: #3f8ce8; -} -.item-check-font.native .b-font:before, -.item-check-font.disabled .b-font:before { - content: "\e611"; - color: #ffffff; -} -.table-no-sort-no-filter-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.table-no-sort-no-filter-font .b-font:before { - content: "\e66a"; - color: inherit; -} -.table-no-sort-no-filter-font:hover .b-font:before, -.table-no-sort-no-filter-font:focus .b-font:before, -.table-no-sort-no-filter-font.hover .b-font:before { - content: "\e66a"; - color: inherit; -} -.table-no-sort-no-filter-font.native .b-font:before, -.table-no-sort-no-filter-font.disabled .b-font:before { - content: "\e66a"; - color: inherit; -} -.table-no-sort-filter-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.table-no-sort-filter-font .b-font:before { - content: "\e66b"; - color: inherit; -} -.table-no-sort-filter-font:hover .b-font:before, -.table-no-sort-filter-font:focus .b-font:before, -.table-no-sort-filter-font.hover .b-font:before { - content: "\e66b"; - color: inherit; -} -.table-no-sort-filter-font.native .b-font:before, -.table-no-sort-filter-font.disabled .b-font:before { - content: "\e66b"; - color: inherit; -} -.table-descending-filter-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.table-descending-filter-font .b-font:before { - content: "\e667"; - color: inherit; -} -.table-descending-filter-font:hover .b-font:before, -.table-descending-filter-font:focus .b-font:before, -.table-descending-filter-font.hover .b-font:before { - content: "\e667"; - color: inherit; -} -.table-descending-filter-font.native .b-font:before, -.table-descending-filter-font.disabled .b-font:before { - content: "\e667"; - color: inherit; -} -.table-ascending-filter-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.table-ascending-filter-font .b-font:before { - content: "\e669"; - color: inherit; -} -.table-ascending-filter-font:hover .b-font:before, -.table-ascending-filter-font:focus .b-font:before, -.table-ascending-filter-font.hover .b-font:before { - content: "\e669"; - color: inherit; -} -.table-ascending-filter-font.native .b-font:before, -.table-ascending-filter-font.disabled .b-font:before { - content: "\e669"; - color: inherit; -} -.table-descending-no-filter-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.table-descending-no-filter-font .b-font:before { - content: "\e666"; - color: inherit; -} -.table-descending-no-filter-font:hover .b-font:before, -.table-descending-no-filter-font:focus .b-font:before, -.table-descending-no-filter-font.hover .b-font:before { - content: "\e666"; - color: inherit; -} -.table-descending-no-filter-font.native .b-font:before, -.table-descending-no-filter-font.disabled .b-font:before { - content: "\e666"; - color: inherit; -} -.table-ascending-no-filter-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.table-ascending-no-filter-font .b-font:before { - content: "\e668"; - color: inherit; -} -.table-ascending-no-filter-font:hover .b-font:before, -.table-ascending-no-filter-font:focus .b-font:before, -.table-ascending-no-filter-font.hover .b-font:before { - content: "\e668"; - color: inherit; -} -.table-ascending-no-filter-font.native .b-font:before, -.table-ascending-no-filter-font.disabled .b-font:before { - content: "\e668"; - color: inherit; -} -.table-no-sort-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.table-no-sort-font .b-font:before { - content: "\e66c"; - color: inherit; -} -.table-no-sort-font:hover .b-font:before, -.table-no-sort-font:focus .b-font:before, -.table-no-sort-font.hover .b-font:before { - content: "\e66c"; - color: inherit; -} -.table-no-sort-font.native .b-font:before, -.table-no-sort-font.disabled .b-font:before { - content: "\e66c"; - color: inherit; -} -.primary-key-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.primary-key-font .b-font:before { - content: "\e67d;"; - color: inherit; -} -.primary-key-font:hover .b-font:before, -.primary-key-font:focus .b-font:before, -.primary-key-font.hover .b-font:before { - content: "\e67d;"; - color: inherit; -} -.primary-key-font.native .b-font:before, -.primary-key-font.disabled .b-font:before { - content: "\e67d;"; - color: inherit; -} -.table-open-row-style-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.table-open-row-style-font .b-font:before { - content: "\e671"; - color: inherit; -} -.table-open-row-style-font:hover .b-font:before, -.table-open-row-style-font:focus .b-font:before, -.table-open-row-style-font.hover .b-font:before { - content: "\e671"; - color: inherit; -} -.table-open-row-style-font:active .b-font:before, -.table-open-row-style-font.active .b-font:before { - content: "\e671"; - color: #3f8ce8; -} -.table-open-row-style-font.native .b-font:before, -.table-open-row-style-font.disabled .b-font:before { - content: "\e671"; - color: inherit; -} -.table-open-col-style-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.table-open-col-style-font .b-font:before { - content: "\e672"; - color: inherit; -} -.table-open-col-style-font:hover .b-font:before, -.table-open-col-style-font:focus .b-font:before, -.table-open-col-style-font.hover .b-font:before { - content: "\e672"; - color: inherit; -} -.table-open-col-style-font:active .b-font:before, -.table-open-col-style-font.active .b-font:before { - content: "\e672"; - color: #3f8ce8; -} -.table-open-col-style-font.native .b-font:before, -.table-open-col-style-font.disabled .b-font:before { - content: "\e672"; - color: inherit; -} -.calculate-function-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.calculate-function-font .b-font:before { - content: "\e6a3"; - color: #666666; -} -.calculate-function-font.native .b-font:before, -.calculate-function-font.disabled .b-font:before { - content: "\e6a3"; - color: #666666; -} -.path-set-doubt .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.path-set-doubt .b-font:before { - content: "\e69a"; - color: #3f8ce8; -} -.path-set-doubt.native .b-font:before, -.path-set-doubt.disabled .b-font:before { - content: "\e69a"; - color: #3f8ce8; -} -.rename-report-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.rename-report-font .b-font:before { - content: "\e687"; - color: #3f8ce8; -} -.rename-report-font.native .b-font:before, -.rename-report-font.disabled .b-font:before { - content: "\e687"; - color: #3f8ce8; -} -.remove-report-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.remove-report-font .b-font:before { - content: "\e605"; - color: #e85050; -} -.remove-report-font.native .b-font:before, -.remove-report-font.disabled .b-font:before { - content: "\e605"; - color: #e85050; -} -.excel-upload-tip-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.excel-upload-tip-font .b-font:before { - content: "\e69e"; - color: #3f8ce8; -} -.excel-upload-tip-font.native .b-font:before, -.excel-upload-tip-font.disabled .b-font:before { - content: "\e69e"; - color: #3f8ce8; -} -.excel-field-type-string-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.excel-field-type-string-font .b-font:before { - content: "\e622"; - color: #3f8ce8; -} -.excel-field-type-string-font.native .b-font:before, -.excel-field-type-string-font.disabled .b-font:before { - content: "\e622"; - color: #3f8ce8; -} -.excel-field-type-number-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.excel-field-type-number-font .b-font:before { - content: "\e61f"; - color: #3f8ce8; -} -.excel-field-type-number-font.native .b-font:before, -.excel-field-type-number-font.disabled .b-font:before { - content: "\e61f"; - color: #3f8ce8; -} -.excel-field-type-date-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.excel-field-type-date-font .b-font:before { - content: "\e61b"; - color: #3f8ce8; -} -.excel-field-type-date-font.native .b-font:before, -.excel-field-type-date-font.disabled .b-font:before { - content: "\e61b"; - color: #3f8ce8; -} -.excel-field-type-pull-down-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.excel-field-type-pull-down-font .b-font:before { - content: "\e608"; - color: #3f8ce8; -} -.excel-field-type-pull-down-font.native .b-font:before, -.excel-field-type-pull-down-font.disabled .b-font:before { - content: "\e608"; - color: #3f8ce8; -} -.data-link-set-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.data-link-set-font .b-font:before { - content: "\e678"; - color: #3f8ce8; -} -.data-link-set-font.native .b-font:before, -.data-link-set-font.disabled .b-font:before { - content: "\e678"; - color: #3f8ce8; -} -.data-link-test-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.data-link-test-font .b-font:before { - content: "\e686"; - color: #3f8ce8; -} -.data-link-test-font.native .b-font:before, -.data-link-test-font.disabled .b-font:before { - content: "\e686"; - color: #3f8ce8; -} -.data-link-copy-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.data-link-copy-font .b-font:before { - content: "\e610"; - color: #58cc7d; -} -.data-link-copy-font.native .b-font:before, -.data-link-copy-font.disabled .b-font:before { - content: "\e610"; - color: #58cc7d; -} -.data-link-remove-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.data-link-remove-font .b-font:before { - content: "\e600"; - color: #e85050; -} -.data-link-remove-font.native .b-font:before, -.data-link-remove-font.disabled .b-font:before { - content: "\e600"; - color: #e85050; -} -.cube-path-confirm-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.cube-path-confirm-font .b-font:before { - content: "\e64e"; - color: #fbb03b; -} -.cube-path-confirm-font.native .b-font:before, -.cube-path-confirm-font.disabled .b-font:before { - content: "\e64e"; - color: #fbb03b; -} -.target-style-less-dot-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.target-style-less-dot-font .b-font:before { - content: "\e6a2"; - color: #e85050; -} -.target-style-less-dot-font.native .b-font:before, -.target-style-less-dot-font.disabled .b-font:before { - content: "\e6a2"; - color: #e85050; -} -.target-style-equal-dot-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.target-style-equal-dot-font .b-font:before { - content: "\e6a2"; - color: #f9a744; -} -.target-style-equal-dot-font.native .b-font:before, -.target-style-equal-dot-font.disabled .b-font:before { - content: "\e6a2"; - color: #f9a744; -} -.target-style-more-dot-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.target-style-more-dot-font .b-font:before { - content: "\e6a2"; - color: #58cc7d; -} -.target-style-more-dot-font.native .b-font:before, -.target-style-more-dot-font.disabled .b-font:before { - content: "\e6a2"; - color: #58cc7d; -} -.target-style-less-arrow-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.target-style-less-arrow-font .b-font:before { - content: "\e6a1"; - color: #e85050; -} -.target-style-less-arrow-font.native .b-font:before, -.target-style-less-arrow-font.disabled .b-font:before { - content: "\e6a1"; - color: #e85050; -} -.target-style-equal-arrow-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.target-style-equal-arrow-font .b-font:before { - content: "\e69f"; - color: #f9a744; -} -.target-style-equal-arrow-font.native .b-font:before, -.target-style-equal-arrow-font.disabled .b-font:before { - content: "\e69f"; - color: #f9a744; -} -.target-style-more-arrow-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.target-style-more-arrow-font .b-font:before { - content: "\e6a0"; - color: #58cc7d; -} -.target-style-more-arrow-font.native .b-font:before, -.target-style-more-arrow-font.disabled .b-font:before { - content: "\e6a0"; - color: #58cc7d; -} -.calculate-target-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.calculate-target-font .b-font:before { - content: "\e6a3"; - color: inherit; -} -.calculate-target-font.native .b-font:before, -.calculate-target-font.disabled .b-font:before { - content: "\e6a3"; - color: inherit; -} -.task-list-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.task-list-font .b-font:before { - content: "\e694"; - color: #3f8ce8; -} -.task-list-font.native .b-font:before, -.task-list-font.disabled .b-font:before { - content: "\e694"; - color: #3f8ce8; -} -.widget-combo-detail-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.widget-combo-detail-font .b-font:before { - content: "\e697"; - color: #3f8ce8; -} -.widget-combo-detail-font.native .b-font:before, -.widget-combo-detail-font.disabled .b-font:before { - content: "\e697"; - color: #3f8ce8; -} -.widget-combo-pull-down-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.widget-combo-pull-down-font .b-font:before { - content: "\e6ab"; - color: #3f8ce8; -} -.widget-combo-pull-down-font.native .b-font:before, -.widget-combo-pull-down-font.disabled .b-font:before { - content: "\e6ab"; - color: #3f8ce8; -} -.widget-tools-filter-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.widget-tools-filter-font .b-font:before { - content: "\e60f"; - color: #3f8ce8; -} -.widget-tools-filter-font.native .b-font:before, -.widget-tools-filter-font.disabled .b-font:before { - content: "\e60f"; - color: #3f8ce8; -} -.widget-tools-clear-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.widget-tools-clear-font .b-font:before { - content: "\e63d"; - color: #3f8ce8; -} -.widget-tools-clear-font.native .b-font:before, -.widget-tools-clear-font.disabled .b-font:before { - content: "\e63d"; - color: #3f8ce8; -} -.widget-tools-export-excel-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.widget-tools-export-excel-font .b-font:before { - content: "\e635"; - color: #3f8ce8; -} -.widget-tools-export-excel-font.native .b-font:before, -.widget-tools-export-excel-font.disabled .b-font:before { - content: "\e635"; - color: #3f8ce8; -} -.widget-combo-expand-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.widget-combo-expand-font .b-font:before { - content: "\e697"; - color: inherit; -} -.widget-combo-expand-font.native .b-font:before, -.widget-combo-expand-font.disabled .b-font:before { - content: "\e697"; - color: inherit; -} -.widget-combo-linkage-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.widget-combo-linkage-font .b-font:before { - content: "\e63c"; - color: inherit; -} -.widget-combo-linkage-font.native .b-font:before, -.widget-combo-linkage-font.disabled .b-font:before { - content: "\e63c"; - color: inherit; -} -.widget-combo-rename-edit-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.widget-combo-rename-edit-font .b-font:before { - content: "\e670"; - color: inherit; -} -.widget-combo-rename-edit-font.native .b-font:before, -.widget-combo-rename-edit-font.disabled .b-font:before { - content: "\e670"; - color: inherit; -} -.widget-combo-show-title-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.widget-combo-show-title-font .b-font:before { - content: "\e64c"; - color: inherit; -} -.widget-combo-show-title-font.native .b-font:before, -.widget-combo-show-title-font.disabled .b-font:before { - content: "\e64c"; - color: inherit; -} -.widget-combo-title-left-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.widget-combo-title-left-font .b-font:before { - content: "\e654"; - color: inherit; -} -.widget-combo-title-left-font.native .b-font:before, -.widget-combo-title-left-font.disabled .b-font:before { - content: "\e654"; - color: inherit; -} -.widget-combo-title-center-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.widget-combo-title-center-font .b-font:before { - content: "\e64f"; - color: inherit; -} -.widget-combo-title-center-font.native .b-font:before, -.widget-combo-title-center-font.disabled .b-font:before { - content: "\e64f"; - color: inherit; -} -.widget-combo-show-filter-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.widget-combo-show-filter-font .b-font:before { - content: "\e60f"; - color: inherit; -} -.widget-combo-show-filter-font.native .b-font:before, -.widget-combo-show-filter-font.disabled .b-font:before { - content: "\e60f"; - color: inherit; -} -.widget-combo-export-excel-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.widget-combo-export-excel-font .b-font:before { - content: "\e635"; - color: inherit; -} -.widget-combo-export-excel-font.native .b-font:before, -.widget-combo-export-excel-font.disabled .b-font:before { - content: "\e635"; - color: inherit; -} -.widget-combo-copy .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.widget-combo-copy .b-font:before { - content: "\e610"; - color: inherit; -} -.widget-combo-copy.native .b-font:before, -.widget-combo-copy.disabled .b-font:before { - content: "\e610"; - color: inherit; -} -.widget-combo-delete .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.widget-combo-delete .b-font:before { - content: "\e605"; - color: inherit; -} -.widget-combo-delete.native .b-font:before, -.widget-combo-delete.disabled .b-font:before { - content: "\e605"; - color: inherit; -} -.widget-combo-asc-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.widget-combo-asc-font .b-font:before { - content: "\e63f"; - color: inherit; -} -.widget-combo-asc-font.native .b-font:before, -.widget-combo-asc-font.disabled .b-font:before { - content: "\e63f"; - color: inherit; -} -.widget-combo-des-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.widget-combo-des-font .b-font:before { - content: "\e63a"; - color: inherit; -} -.widget-combo-des-font.native .b-font:before, -.widget-combo-des-font.disabled .b-font:before { - content: "\e63a"; - color: inherit; -} -.widget-combo-clear-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.widget-combo-clear-font .b-font:before { - content: "\e63d"; - color: inherit; +.pull-down-font .b-font { + *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); } -.widget-combo-clear-font.native .b-font:before, -.widget-combo-clear-font.disabled .b-font:before { - content: "\e63d"; +.pull-down-font .b-font:before { + content: "\e608"; color: inherit; } -.detail-table-popup-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.detail-table-popup-font .b-font:before { - content: "\e6ac"; +.pull-down-font.native .b-font:before, +.pull-down-font.disabled .b-font:before { + content: "\e608"; color: inherit; } -.detail-table-popup-font:hover .b-font:before, -.detail-table-popup-font:focus .b-font:before, -.detail-table-popup-font.hover .b-font:before { - content: "\e6ac"; - color: #3f8ce8; +.pull-down-h-font .b-font { + *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); } -.detail-table-popup-font.native .b-font:before, -.detail-table-popup-font.disabled .b-font:before { - content: "\e6ac"; +.pull-down-h-font .b-font:before { + content: "\e608"; color: inherit; } -.chart-drill-up .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.chart-drill-up .b-font:before { - content: "\e6ad"; +.pull-down-h-font:hover .b-font:before, +.pull-down-h-font:focus .b-font:before, +.pull-down-h-font.hover .b-font:before { + content: "\e608"; color: inherit; } -.chart-drill-up.native .b-font:before, -.chart-drill-up.disabled .b-font:before { - content: "\e6ad"; +.pull-down-h-font.native .b-font:before, +.pull-down-h-font.disabled .b-font:before { + content: "\e608"; color: inherit; } -.chart-drill-down .b-font { +.pull-down-ha-font .b-font { *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); } -.chart-drill-down .b-font:before { +.pull-down-ha-font .b-font:before { content: "\e608"; color: inherit; } -.chart-drill-down.native .b-font:before, -.chart-drill-down.disabled .b-font:before { +.pull-down-ha-font:hover .b-font:before, +.pull-down-ha-font:focus .b-font:before, +.pull-down-ha-font.hover .b-font:before { content: "\e608"; color: inherit; } -.report-filter-open-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.report-filter-open-font .b-font:before { - content: "\e648"; - color: inherit; -} -.report-filter-open-font.native .b-font:before, -.report-filter-open-font.disabled .b-font:before { - content: "\e648"; - color: inherit; -} -.report-filter-close-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.report-filter-close-font .b-font:before { - content: "\e645"; - color: inherit; +.pull-down-ha-font:active .b-font:before, +.pull-down-ha-font.active .b-font:before { + content: "\e608"; + color: #3f8ce8; } -.report-filter-close-font.native .b-font:before, -.report-filter-close-font.disabled .b-font:before { - content: "\e645"; +.pull-down-ha-font.native .b-font:before, +.pull-down-ha-font.disabled .b-font:before { + content: "\e608"; color: inherit; } -.report-apply-hangout-normal-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.report-apply-hangout-normal-font .b-font:before { - content: "\e66d"; - color: #999999; -} -.report-apply-hangout-normal-font.native .b-font:before, -.report-apply-hangout-normal-font.disabled .b-font:before { - content: "\e66d"; - color: #999999; -} -.report-apply-hangout-ing-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); +.check-font .b-font { + *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); } -.report-apply-hangout-ing-font .b-font:before { - content: "\e66d"; +.check-font .b-font:before { + content: "\e611"; color: #3f8ce8; } -.report-apply-hangout-ing-font.native .b-font:before, -.report-apply-hangout-ing-font.disabled .b-font:before { - content: "\e66d"; +.check-font.native .b-font:before, +.check-font.disabled .b-font:before { + content: "\e611"; color: #3f8ce8; } -.report-hangout-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.report-hangout-font .b-font:before { - content: "\e64b"; - color: #58cc7d; -} -.report-hangout-font.native .b-font:before, -.report-hangout-font.disabled .b-font:before { - content: "\e64b"; - color: #58cc7d; -} -.report-cancel-hangout-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); +.item-check-font .b-font { + *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); } -.report-cancel-hangout-font .b-font:before { - content: "\e64b"; - color: #999999; +.item-check-font .b-font:before { + content: "\e611"; + color: #ffffff; } -.report-cancel-hangout-font.native .b-font:before, -.report-cancel-hangout-font.disabled .b-font:before { - content: "\e64b"; +.item-check-font:hover .b-font:before, +.item-check-font:focus .b-font:before, +.item-check-font.hover .b-font:before { + content: "\e611"; color: #999999; } -.report-hangout-ing-mark-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.report-hangout-ing-mark-font .b-font:before { - content: "\e64b"; - color: #3f8ce8; -} -.report-hangout-ing-mark-font.native .b-font:before, -.report-hangout-ing-mark-font.disabled .b-font:before { - content: "\e64b"; - color: #3f8ce8; -} -.delete-font-package .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.delete-font-package .b-font:before { - content: "\e605"; - color: #e85050; -} -.delete-font-package.native .b-font:before, -.delete-font-package.disabled .b-font:before { - content: "\e605"; - color: #e85050; -} -.delete-h-font-package .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.delete-h-font-package .b-font:before { - content: "\e605"; - color: #e85050; -} -.delete-h-font-package.native .b-font:before, -.delete-h-font-package.disabled .b-font:before { - content: "\e605"; - color: #e85050; -} -.rename-font-package .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.rename-font-package .b-font:before { - content: "\e687"; - color: #3f8ce8; -} -.rename-font-package.native .b-font:before, -.rename-font-package.disabled .b-font:before { - content: "\e687"; - color: #3f8ce8; -} -.package-selected-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.package-selected-font .b-font:before { - content: "\e6b3"; - color: #3f8ce8; -} -.package-selected-font.native .b-font:before, -.package-selected-font.disabled .b-font:before { - content: "\e6b3"; - color: #3f8ce8; -} -.package-not-selected-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.package-not-selected-font .b-font:before { - content: "\e6b2"; - color: #3f8ce8; -} -.package-not-selected-font.native .b-font:before, -.package-not-selected-font.disabled .b-font:before { - content: "\e6b2"; - color: #3f8ce8; -} -.report-detail-info-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.report-detail-info-font .b-font:before { - content: "\e66e"; - color: #f07d0a; -} -.report-detail-info-font.native .b-font:before, -.report-detail-info-font.disabled .b-font:before { - content: "\e66e"; - color: #f07d0a; -} -.report-rename-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.report-rename-font .b-font:before { - content: "\e670"; - color: #58cc7d; -} -.report-rename-font.native .b-font:before, -.report-rename-font.disabled .b-font:before { - content: "\e670"; - color: #58cc7d; -} -.report-cancel-share-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.report-cancel-share-font .b-font:before { - content: "\e6b5"; - color: #3f8ce8; -} -.report-cancel-share-font.native .b-font:before, -.report-cancel-share-font.disabled .b-font:before { - content: "\e6b5"; +.item-check-font:active .b-font:before, +.item-check-font.active .b-font:before { + content: "\e611"; color: #3f8ce8; } -.drill-push-up-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); +.item-check-font.native .b-font:before, +.item-check-font.disabled .b-font:before { + content: "\e611"; + color: #ffffff; } -.drill-push-up-font .b-font:before { - content: "\e630"; - color: inherit; +.primary-key-font .b-font { + *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); } -.drill-push-up-font.native .b-font:before, -.drill-push-up-font.disabled .b-font:before { - content: "\e630"; +.primary-key-font .b-font:before { + content: "\e67d;"; color: inherit; } -.drill-push-down-font .b-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = ''); -} -.drill-push-down-font .b-font:before { - content: "\e62d"; +.primary-key-font:hover .b-font:before, +.primary-key-font:focus .b-font:before, +.primary-key-font.hover .b-font:before { + content: "\e67d;"; color: inherit; } -.drill-push-down-font.native .b-font:before, -.drill-push-down-font.disabled .b-font:before { - content: "\e62d"; +.primary-key-font.native .b-font:before, +.primary-key-font.disabled .b-font:before { + content: "\e67d;"; color: inherit; } .drag-tag-font .b-font { diff --git a/src/less/base/table/table.grid.scrollbar.less b/src/less/base/table/table.grid.scrollbar.less index 577921b64..950bf8b2f 100644 --- a/src/less/base/table/table.grid.scrollbar.less +++ b/src/less/base/table/table.grid.scrollbar.less @@ -1,4 +1,5 @@ @import "../../bibase"; + .scrollbar-layout-main { box-sizing: border-box; outline: none; @@ -7,17 +8,13 @@ transition-duration: 250ms; transition-timing-function: ease; user-select: none; - background-color: @scroll-color; - @ieColor: argb(@scroll-color); - filter:~"progid:DXImageTransform.Microsoft.gradient(startColorstr=@{ieColor},endColorstr=@{ieColor})"; + .background-color(@scroll-color, 5%); border-radius: 5px; } .bi-theme-dark { .scrollbar-layout-main { - background-color: @scroll-color-theme-dark; - @ieColor: argb(@scroll-color-theme-dark); - filter:~"progid:DXImageTransform.Microsoft.gradient(startColorstr=@{ieColor},endColorstr=@{ieColor})"; + .background-color(@scroll-color-theme-dark, 5%); } } @@ -39,16 +36,12 @@ height: 10px; left: 0; transition-property: background-color; - background-color: @scroll-color; - @ieColor: argb(@scroll-color); - filter:~"progid:DXImageTransform.Microsoft.gradient(startColorstr=@{ieColor},endColorstr=@{ieColor})"; + .background-color(@scroll-color, 5%); } .bi-theme-dark { .scrollbar-layout-main-horizontal { - background-color: @scroll-color-theme-dark; - @ieColor: argb(@scroll-color-theme-dark); - filter:~"progid:DXImageTransform.Microsoft.gradient(startColorstr=@{ieColor},endColorstr=@{ieColor})"; + .background-color(@scroll-color-theme-dark, 5%); } } @@ -122,34 +115,26 @@ } .public-scrollbar-face:after { - background-color: @scroll-thumb-color; - @ieColor: argb(@scroll-thumb-color); - filter:~"progid:DXImageTransform.Microsoft.gradient(startColorstr=@{ieColor},endColorstr=@{ieColor})"; + .background-color(@scroll-color, 30%); } .bi-theme-dark { .public-scrollbar-face:after { - background-color: @scroll-thumb-color-theme-dark; - @ieColor: argb(@scroll-thumb-color-theme-dark); - filter:~"progid:DXImageTransform.Microsoft.gradient(startColorstr=@{ieColor},endColorstr=@{ieColor})"; + .background-color(@scroll-color-theme-dark, 30%); } } .public-scrollbar-main:hover .public-scrollbar-face:after, .public-scrollbar-main-active .public-scrollbar-face:after, .public-scrollbar-faceActive:after { - background-color: @scroll-thumb-focus-color; - @ieColor: argb(@scroll-thumb-focus-color); - filter:~"progid:DXImageTransform.Microsoft.gradient(startColorstr=@{ieColor},endColorstr=@{ieColor})"; + .background-color(@scroll-color, 70%); } .bi-theme-dark { .public-scrollbar-main:hover .public-scrollbar-face:after, .public-scrollbar-main-active .public-scrollbar-face:after, .public-scrollbar-faceActive:after { - background-color: @scroll-thumb-focus-color-theme-dark; - @ieColor: argb(@scroll-thumb-focus-color-theme-dark); - filter:~"progid:DXImageTransform.Microsoft.gradient(startColorstr=@{ieColor},endColorstr=@{ieColor})"; + .background-color(@scroll-color-theme-dark, 70%); } } diff --git a/src/less/core/utils/common.less b/src/less/core/utils/common.less index d5a7b4a0a..e02726723 100644 --- a/src/less/core/utils/common.less +++ b/src/less/core/utils/common.less @@ -158,17 +158,15 @@ } .bi-z-index-mask { - background-color: fade(@color-bi-background-black, 50%); color: @color-bi-background-default; - @ieColor: argb(fade(@color-bi-background-black, 50%)); - filter: ~"progid:DXImageTransform.Microsoft.gradient(startColorstr=@{ieColor},endColorstr=@{ieColor})"; + .background-color(@color-bi-background-black, 50%); } //只有背景变化 .bi-list-item { &:hover, &.hover { - background-color: @color-bi-background-normal; color: @color-bi-text-black; + .background-color(@color-bi-background-black, 5%); } &.disabled { &, &:hover, &:active { @@ -184,8 +182,8 @@ .bi-theme-dark { .bi-list-item { &:hover, &.hover { - background-color: @color-bi-background-normal-theme-dark; color: @color-bi-text; + .background-color(@color-bi-background-default, 5%); } &.disabled { &, &:hover, &:active { @@ -201,8 +199,9 @@ //极简 .bi-list-item-simple { + color: @color-bi-text-tips; &:hover, &.hover { - color: @color-bi-text-black; + color: @color-bi-text-highlight; } &.disabled { &, &:hover, &:active { @@ -214,22 +213,6 @@ } } -.bi-theme-dark { - .bi-list-item-simple { - &:hover, &.hover { - color: @color-bi-text; - } - &.disabled { - &, &:hover, &:active { - color: @color-bi-text-disabled-theme-dark !important; - & .bi-high-light { - color: @color-bi-text-disabled-theme-dark !important; - } - } - } - } -} - //文字active时变化 .bi-list-item-effect { &:hover { @@ -272,11 +255,11 @@ .bi-list-item-active { &:hover, &.hover { color: @color-bi-text-black; - background-color: @color-bi-background-normal; + .background-color(@color-bi-background-black, 5%); } &.active, &:active { color: @color-bi-text-highlight; - background-color: @color-bi-background-normal; + .background-color(@color-bi-background-black, 5%); } &.disabled { &, &:hover, &:active { @@ -292,12 +275,12 @@ .bi-theme-dark { .bi-list-item-active { &:hover, &.hover { - background-color: @color-bi-background-normal-theme-dark; color: @color-bi-text; + .background-color(@color-bi-background-default, 5%); } &.active, &:active { color: @color-bi-text-highlight; - background-color: @color-bi-background-normal-theme-dark; + .background-color(@color-bi-background-default, 5%); } &.disabled { &, &:hover, &:active { @@ -314,8 +297,8 @@ //有选中效果 .bi-list-item-select { &:hover, &.hover { - color: @color-bi-text-highlight; - background-color: @color-bi-background-normal; + color: @color-bi-text-black; + .background-color(@color-bi-background-black, 5%); } &:active, &.active { color: @color-bi-text; @@ -338,8 +321,8 @@ .bi-theme-dark { .bi-list-item-select { &:hover, &.hover { - color: @color-bi-text-highlight; - background-color: @color-bi-background-normal-theme-dark; + color: @color-bi-text; + .background-color(@color-bi-background-default, 5%); } &:active, &.active { color: @color-bi-text; @@ -359,42 +342,3 @@ } } } - -.bi-list-item-choose { - &:hover { - color: @color-bi-text-black; - } - &:active, &.active { - color: @color-bi-text; - background-color: @color-bi-background-highlight; - & .bi-high-light { - color: @color-bi-text; - } - } - &.disabled { - &, &:hover, &:active { - color: @color-bi-text-disabled !important; - background-color: transparent !important; - & .bi-high-light { - color: @color-bi-text-disabled !important; - } - } - } -} - -.bi-theme-dark { - .bi-list-item-choose { - &:hover { - color: @color-bi-text; - } - &.disabled { - &, &:hover, &:active { - color: @color-bi-text-disabled-theme-dark !important; - background-color: transparent !important; - & .bi-high-light { - color: @color-bi-text-disabled-theme-dark !important; - } - } - } - } -} \ No newline at end of file diff --git a/src/less/lib/colors.less b/src/less/lib/colors.less index 578f333d3..bc7c6b0cb 100644 --- a/src/less/lib/colors.less +++ b/src/less/lib/colors.less @@ -85,8 +85,6 @@ @color-bi-border-delete: @border-color-negative; //警示边框色 @color-bi-border-warning: @border-color-warning; -//拖拽边框 -@color-bi-border-resize: @border-color-resize; //边框提亮 @color-bi-border-highlight: @border-color-highlight; diff --git a/src/less/lib/constant.less b/src/less/lib/constant.less index 9e9341b59..71f7758a5 100644 --- a/src/less/lib/constant.less +++ b/src/less/lib/constant.less @@ -31,10 +31,6 @@ @font-color-redmark: #f07d0a; @font-color-orange: #fcc550; -//font-icon color -@icon-color-normal: #999999; -@icon-color-active: #3f8ce8; - //background color @background-color-black: #1a1a1a;// @background-color-default: #ffffff;// @@ -43,8 +39,7 @@ @background-color-normal-theme-dark: #191B2B;// @background-color-highlight: #3f8ce8; @background-color-dark: #d4dadd; -@background-color-disabled: #c4c6c6; -@background-color-alert: #fddddd; +@background-color-disabled: #cccccc; @background-color-light-blue: #d8f2fd;// @background-color-light-green: #e1f4e7;// @@ -56,6 +51,7 @@ @background-color-yellow: #f9a744; @background-color-virtual-blue: #d8f3fe; +@background-color-alert: #fddddd; @background-color-warning: #fbb03b; @background-color-negative: #e85050; @@ -66,12 +62,10 @@ //border color @border-color-default: #ffffff; @border-color-black: #1a1a1a; -@border-color-normal: #d4dadd; @border-color-line: #d4dadd; @border-color-line-theme-dark: #525466; @border-color-outline: #3f8ce8; @border-color-highlight: #178cdf; -@border-color-resize: #e85050; @border-color-warning: #fbb03b; @border-color-negative: #e85050; @@ -87,13 +81,8 @@ @border-color-dark: #c4c6c6; //scroll color -@scroll-color: rgba(102,102,102,.05); -@scroll-thumb-color: rgba(102,102,102,.3); -@scroll-thumb-focus-color: rgba(102,102,102,.7); - -@scroll-color-theme-dark: rgba(204,204,204,.05); -@scroll-thumb-color-theme-dark: rgba(204,204,204,.3); -@scroll-thumb-focus-color-theme-dark: rgba(204,204,204,.7); +@scroll-color: #666666; +@scroll-color-theme-dark: #cccccc; @water-mark-color: #cccccc; @water-mark-color-theme-dark: #666666; diff --git a/src/less/resource/font.less b/src/less/resource/font.less index ad9bf4215..1d63e9402 100644 --- a/src/less/resource/font.less +++ b/src/less/resource/font.less @@ -3,39 +3,18 @@ @import "../image"; .font(close-font, @font-cross); -.font(close-red-font, @font-cross, @color-bi-text-warning); .font-hover(close-h-font, @font-cross); -.font-effect(close-e-font, @font-cross); .font-hover-active(close-ha-font, @font-cross); //搜索框中的带有hover后颜色变红的图标 .font-hover(search-close-h-font, @font-cross, inherit, @color-bi-text-warning); -.font(trigger-font, @font-arrow-down); -.font-hover(trigger-h-font, @font-arrow-down); -.font-hover-active(trigger-ha-font, @font-arrow-down); - -.font(pre-page-font, @font-arrow-left); .font-hover(pre-page-h-font, @font-arrow-left); -.font-hover-active(pre-page-ha-font, @font-arrow-left); -.font(next-page-font, @font-arrow-right); .font-hover(next-page-h-font, @font-arrow-right); -.font-hover-active(next-page-ha-font, @font-arrow-right); .font(search-font, @font-search); -.font-hover(search-h-font, @font-search); -.font-hover-active(search-ha-font, @font-search); -.font(share-font, @font-share); -.font-hover(share-h-font, @font-share); -.font-hover-active(share-ha-font, @font-share); -/**维度/指标 下拉列表图标字体 ~begin~**/ -//删除 -.font(delete-font, @font-delete); -.font-hover(delete-h-font, @font-delete); -.font-hover-active(delete-ha-font, @font-delete); -.font-effect(delete-e-font, @font-delete); //子菜单选中 .font(dot-font, @font-dot, @color-bi-text-black); .font-hover(dot-h-font, @font-dot, @color-bi-text-black); @@ -60,46 +39,6 @@ .font-hover-active(check-mark-ha-font, @font-check-mark); .font-effect(check-mark-e-font, @font-check-mark); -//指标来自 -.font(dimension-from-font, @font-dimension-from); -.font-hover(dimension-from-h-font, @font-dimension-from); -.font-hover-active(dimension-from-ha-font, @font-dimension-from); -.font-effect(dimension-from-e-font, @font-dimension-from); - -//图表类型选择 -.font(chart-type-font, @font-chart-type); -.font-hover(chart-type-h-font, @font-chart-type); -.font-hover-active(chart-type-ha-font, @font-chart-type); -.font-effect(chart-type-e-font, @font-chart-type); - -//样式设置 -.font(style-set-font, @font-style-set); -.font-hover(style-set-h-font, @font-style-set); -.font-hover-active(style-set-ha-font, @font-style-set); -.font-effect(style-set-e-font, @font-style-set); - -//超级链接 -.font(hyper-link-font, @font-href); - -//过滤 -.font(filter-font, @font-filter); -.font-hover(filter-h-font, @font-filter); -.font-hover-active(filter-ha-font, @font-filter); -.font-effect(filter-e-font, @font-filter); - -//维度过滤 -.font(classify-font, @font-classify, @color-bi-text-highlight); -.font(series-font, @font-series, @color-bi-border-success); -/**维度/指标 下拉列表图标字体 ~end~**/ - -/** dashboard组件/控件 下拉列表图标字体 ~begin~**/ -.font-hover(link-to-widget-h-font, @font-cross, @color-bi-text-gray, @color-bi-text-highlight); -.font-hover(link-to-detail-h-font, @font-cross, @color-bi-text-gray, @color-bi-text-highlight); -.font-hover(detail-setting-h-font, @font-cross, @color-bi-text-gray, @color-bi-text-highlight); -.font-hover(export-to-excel-h-font, @font-cross, @color-bi-text-gray, @color-bi-text-highlight); -.font-hover(widget-copy-h-font, @font-copy, @color-bi-text-gray, @color-bi-text-highlight); -.font-hover(widget-delete-h-font, @font-delete, @color-bi-text-gray, @color-bi-text-highlight); - /** dashboard组件/控件 下拉列表图标字体 ~end~**/ //树控件图标 @@ -115,252 +54,16 @@ //下拉框小小三角 .font-hover-active(trigger-triangle-font, @font-no-sort-no-filter, @color-bi-text-gray, @color-bi-text-gray, @color-bi-text-highlight); -//日期控件字体图标 -.font-hover(widget-date-next-h-font, @font-right); -.font-hover(widget-date-pre-h-font, @font-left); -.font-hover(widget-date-h-change-font, @font-change); - //单选下拉框 //向下展开子菜单 .font(pull-down-font, @font-down-triangle); .font-hover(pull-down-h-font, @font-down-triangle); .font-hover-active(pull-down-ha-font, @font-down-triangle); -//字段区域 -//TODO 向下展开的图表暂时没有(不同于普通的向下箭头,角度应该更小一点) -.font(delete-field-font, @font-delete); -.font-hover(delete-field-h-font, @font-delete); -.font-hover-active(delete-field-ha-font, @font-delete); - -//dashboard -.font-hover(toolbar-save-font, @font-save); -.font-hover(toolbar-undo-font, @font-undo); -.font-hover(toolbar-redo-font, @font-redo); -.font-hover(toolbar-edit-font, @font-edit); -.font-hover(toolbar-preview-font, @font-preview); - -.font-hover-active(chart-table-font, @font-summary); -.font-hover-active(chart-axis-font, @font-axis); -.font-hover-active(chart-bar-font, @font-bar); -.font-hover-active(chart-accumulate-bar-font, @font-accumulate-bar); -.font-hover-active(chart-pie-font, @font-pie); -.font-hover-active(chart-map-font, @font-map); -.font-hover-active(chart-dashboard-font, @font-dashboard); -.font-hover-active(chart-doughnut-font, @font-doughnut); -.font-hover-active(chart-detail-font, @font-detail); -.font-hover-active(chart-more-font, @font-more-cn); -.font-hover-active(chart-bubble-font, @font-bubble); -.font-hover-active(chart-scatter-font, @font-scatter); -.font-hover-active(chart-radar-font, @font-radar); -.font-hover-active(chart-content-font, @font-content); -.font-hover-active(chart-image-font, @font-image); -.font-hover-active(chart-web-font, @font-web); - -.font-hover-active(chart-string-font, @font-text); -.font-hover-active(chart-number-font, @font-number); -.font-hover-active(chart-tree-font, @font-tree); -.font-hover-active(chart-date-font, @font-date); -.font-hover-active(chart-year-font, @font-year); -.font-hover-active(chart-month-font, @font-year-month); -.font-hover-active(chart-quarter-font, @font-quarter); -.font-hover-active(chart-ymd-font, @font-YMD); -.font-hover-active(chart-date-range-font, @font-date-range); -.font-hover-active(chart-general-query-font, @font-and-or); -.font-hover-active(chart-query-font, @font-query-cn); -.font-hover-active(chart-reset-font, @font-reset-cn); -.font-hover-active(chart-textarea-font, @font-text-area); -.font-hover-active(chart-reuse-font, @font-reuse); - -.font(chart-date-normal-font, @font-date); - -//数值区间 -.font-hover-active(less-font, @font-less); -.font-hover-active(less-equal-font, @font-less-equal); - .font(check-font, @font-check-mark, @color-bi-text-highlight); -//移动到分组 -.font(move2group-add-font, @font-add, @color-bi-text-highlight); - -//选择字段 -.font-hover-active(select-data-field-calc-font, @font-field-calc, inherit, inherit, @color-bi-text); -.font-hover-active(select-data-field-string-font, @font-field-string, inherit, inherit, @color-bi-text); -.font-hover-active(select-data-field-number-font, @font-field-number, inherit, inherit, @color-bi-text); -.font-hover-active(select-data-field-date-font, @font-field-date, inherit, inherit, @color-bi-text); -.font(select-data-field-string-group-font, @font-field-string); -.font(select-data-field-number-group-font, @font-field-number); -.font(select-data-field-date-group-font, @font-field-date); -.font-hover-active(select-data-preview-font, @font-preview, @color-bi-text-gray, @color-bi-text-highlight, @color-bi-text-highlight); - -.font-hover(detail-dimension-set-font, @font-setting); -.font-hover(detail-real-data-warning-font, @font-warning, @color-bi-text-redmark, @color-bi-text-redmark); - -//数据配置分组统计中的选择字段 -.font-hover-active(select-group-field-string-font, @font-field-string, @color-bi-text-highlight, @color-bi-text-highlight, @color-bi-text-highlight); -.font-hover-active(select-group-field-number-font, @font-field-number, @color-bi-text-highlight, @color-bi-text-highlight, @color-bi-text-highlight); -.font-hover-active(select-group-field-date-font, @font-field-date, @color-bi-text-highlight, @color-bi-text-highlight, @color-bi-text-highlight); - -//详细设置 -.font-hover(dashboard-widget-combo-detail-set-font, @font-detail-set); - -.font(group-add-font, @font-add, @icon-color-normal); - -//自定义排序 -.font(sortable-font, @font-sortable); - -//文本控件 -.font(text-bold-font, @font-bold); -.font(text-italic-font, @font-italic); -.font(text-underline-font, @font-underline); -.font(text-color-font, @font-color); -.font(text-background-font, @font-background); -.font(text-color-underline-font, @font-color-underline); -.font(text-align-left-font, @font-align-left); -.font(text-align-center-font, @font-align-center); -.font(text-align-right-font, @font-align-right); - -//图片控件 -.font(img-upload-font, @font-upload, @icon-color-active); -.font(img-size-font, @font-image-size, @icon-color-active); -.font(img-href-font, @font-href, @icon-color-active); -.font(img-shutdown-font, @font-shutdown, @icon-color-active); - -//平台-我创建的 -.font(move-font, @font-move); -.font(share-font, @font-share); -.font(new-file-font, @font-new-folder); -.font(file-font, @font-file, @color-create-file-text); -.font(folder-font, @font-folder, @color-bi-text-highlight); -.font-hover-active(letter-font, @font-letter); -.font-hover-active(time-font, @font-time); -.font(rename-font, @font-rename); -.font(delete-template-font, @font-delete, @color-bi-text-gray); -.font(real-time-font, @font-real-time, @color-create-file-text); - -//选择表 -.font-hover-active(data-source-table-font, @font-source-table, @color-bi-text-highlight, @color-bi-text-highlight, @color-bi-text); -.font-hover-active(etl-table-font, @font-etl-table, @color-bi-text-highlight, @color-bi-text-highlight, @color-bi-text); -.font-hover-active(excel-table-font, @font-excel-table, @color-bi-text-highlight, @color-bi-text-highlight, @color-bi-text); -.font-hover-active(sql-table-font, @font-sql-table, @color-bi-text-highlight, @color-bi-text-highlight, @color-bi-text); - -.font(refresh-table-font, @font-refresh); -.font(recover-chart-font-hightlight, @font-recover-chart); - -.font-hover-active(tables-tile-view-font, @font-tile-view, inherit, inherit, @color-bi-text); -.font-hover-active(tables-relation-view-font, @font-relation-view, inherit, inherit, @color-bi-text); - -.font(add-new-table-pull-down-font, @font-down, @color-bi-text); - -.font-hover-active(data-link-check-font, @font-check-mark, @color-bi-text, @color-bi-text-gray, @color-bi-text-highlight); - -//点击编辑 -.font-hover(edit-set-font, @font-detail-set); - -//新建分析、数据配置 -.font-hover(new-analysis-font, @font-new, @color-bi-text, @color-bi-text); -.font-hover(data-config-font, @font-database, @color-bi-text, @color-bi-text); - -//切换文件夹视图 -.font-hover-active(folder-list-view, @font-classify, inherit, inherit, @color-bi-text); -.font-hover-active(folder-card-view, @font-tile-view, inherit, inherit, @color-bi-text); - .font-hover-active(item-check-font, @font-check-mark, @color-bi-text, @color-bi-text-gray, @color-bi-font-active); -//表格上面的相关操作——升序、降序、不排序、过滤 -.font-hover(table-no-sort-no-filter-font, @font-no-sort-no-filter); -.font-hover(table-no-sort-filter-font, @font-no-sort-filter); -.font-hover(table-descending-filter-font, @font-descending-filter); -.font-hover(table-ascending-filter-font, @font-ascending-filter); -.font-hover(table-descending-no-filter-font, @font-descending-no-filter); -.font-hover(table-ascending-no-filter-font, @font-ascending-no-filter); -.font-hover(table-no-sort-font, @font-no-sort); - .font-hover(primary-key-font, @font-key); -.font-hover-active(table-open-row-style-font, @font-table-row-open); -.font-hover-active(table-open-col-style-font, @font-table-col-open); - -//气泡图计算函数 -.font(calculate-function-font, @font-field-calc, @font-color-normal); - -//匹配关系 -.font(path-set-doubt, @font-doubt, @color-bi-text-highlight); - -.font(rename-report-font, @font-rename, @color-bi-text-highlight); -.font(remove-report-font, @font-delete, @color-bi-text-warning); - -.font(excel-upload-tip-font, @font-tip, @color-bi-text-highlight); -.font(excel-field-type-string-font, @font-text, @color-bi-text-highlight); -.font(excel-field-type-number-font, @font-number, @color-bi-text-highlight); -.font(excel-field-type-date-font, @font-date, @color-bi-text-highlight); -.font(excel-field-type-pull-down-font, @font-down-triangle, @color-bi-text-highlight); - -.font(data-link-set-font, @font-setting, @color-bi-text-highlight); -.font(data-link-test-font, @font-test-link, @color-bi-text-highlight); -.font(data-link-copy-font, @font-copy, @color-bi-background-success); -.font(data-link-remove-font, @font-cross, @color-bi-text-warning); - -.font(cube-path-confirm-font, @font-warning, @color-bi-background-warning); - -.font(target-style-less-dot-font, @font-mark-dot, @color-target-style-less); -.font(target-style-equal-dot-font, @font-mark-dot, @color-target-style-equal); -.font(target-style-more-dot-font, @font-mark-dot, @color-target-style-more); -.font(target-style-less-arrow-font, @font-mark-down-arrow, @color-target-style-less); -.font(target-style-equal-arrow-font, @font-mark-equal, @color-target-style-equal); -.font(target-style-more-arrow-font, @font-mark-up-arrow, @color-target-style-more); - -.font(calculate-target-font, @font-field-calc); - -.font(task-list-font, @font-classify, @color-bi-text-highlight); - -.font(widget-combo-detail-font, @font-solid-setting, @color-bi-text-highlight); -.font(widget-combo-pull-down-font, @font-pull-down, @color-bi-text-highlight); -.font(widget-tools-filter-font, @font-filter, @color-bi-text-highlight); -.font(widget-tools-clear-font, @font-clear, @color-bi-text-highlight); -.font(widget-tools-export-excel-font, @font-export-excel, @color-bi-text-highlight); - -.font(widget-combo-expand-font, @font-solid-setting); -.font(widget-combo-linkage-font, @font-linkage); -.font(widget-combo-rename-edit-font, @font-rename-edit); -.font(widget-combo-show-title-font, @font-check); -.font(widget-combo-title-left-font, @font-align-left); -.font(widget-combo-title-center-font, @font-align-center); -.font(widget-combo-show-filter-font, @font-filter); -.font(widget-combo-export-excel-font, @font-export-excel); -.font(widget-combo-copy, @font-copy); -.font(widget-combo-delete, @font-delete); - -.font(widget-combo-asc-font, @font-asc); -.font(widget-combo-des-font, @font-des); -.font(widget-combo-clear-font, @font-clear); - -.font-hover(detail-table-popup-font, @font-hellip, inherit, @color-bi-font-active); - -.font(chart-drill-up, @font-top-triangle); -.font(chart-drill-down, @font-down-triangle); - -.font(report-filter-open-font, @font-report-filter-open); -.font(report-filter-close-font, @font-report-filter-close); - -.font(report-apply-hangout-normal-font, @font-apply-hangout, @color-bi-text-gray); -.font(report-apply-hangout-ing-font, @font-apply-hangout, @color-bi-text-highlight); -.font(report-hangout-font, @font-hangout, @color-bi-background-success); -.font(report-cancel-hangout-font, @font-hangout, @color-bi-text-gray); -.font(report-hangout-ing-mark-font, @font-hangout, @color-bi-background-highlight); - -//业务包管理 -.font(delete-font-package, @font-delete, @color-bi-text-warning); -.font(delete-h-font-package, @font-delete, @color-bi-text-warning); -.font(rename-font-package, @font-rename, @color-bi-text-highlight); -.font(package-selected-font, @font-check-box-selected, @color-bi-text-highlight); -.font(package-not-selected-font, @font-check-box-not-selected, @color-bi-text-highlight); - -.font(report-detail-info-font, @font-info, @color-bi-text-redmark); -.font(report-rename-font, @font-rename-edit, @color-bi-background-success); - -.font(report-cancel-share-font, @font-cancel-share, @color-bi-text-highlight); - -.font(drill-push-up-font, @font-up); -.font(drill-push-down-font, @font-down); - .font(drag-tag-font, @font-cross, @color-bi-text-redmark); \ No newline at end of file diff --git a/src/less/visual.less b/src/less/visual.less index 8865353bb..a5fbd7e87 100644 --- a/src/less/visual.less +++ b/src/less/visual.less @@ -28,6 +28,12 @@ -moz-box-shadow: @arguments; } +.background-color(@color, @alpha) { + background-color: fade(@color, @alpha); + @ieColor: argb(fade(@color, @alpha)); + filter: ~"progid:DXImageTransform.Microsoft.gradient(startColorstr=@{ieColor},endColorstr=@{ieColor})"; +} + .opacity(@opa) { opacity: @opa; @opa-ie: @opa*100;