From bee69885ee0c96aec90171a1565f7457f369a0c0 Mon Sep 17 00:00:00 2001 From: windy <1374721899@qq.com> Date: Fri, 17 Jun 2022 14:25:39 +0800 Subject: [PATCH 1/3] =?UTF-8?q?=E6=97=A0JIRA=20=E5=90=8C=E6=AD=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bi.lessconfig.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/bi.lessconfig.json b/bi.lessconfig.json index d1a58f5ce..6651f8914 100644 --- a/bi.lessconfig.json +++ b/bi.lessconfig.json @@ -38,5 +38,7 @@ "@color-bi-color-toast-warning": "#FAAA39", "@color-bi-color-toast-error": "#E65251", "@color-bi-color-toast-normal": "#2C60DB", - "@color-bi-color-toast-text": "#000A19" + "@color-bi-color-toast-text": "#000A19", + "@color-bi-background-header-background": "rgba(9, 30, 64, 0.9)", + "@color-bi-background-header-background-theme-dark": "rgba(255, 255, 255, 0.9)" } From cb697620cd05ffb4f475d7b895e9f879bffd9004 Mon Sep 17 00:00:00 2001 From: windy <1374721899@qq.com> Date: Fri, 17 Jun 2022 16:56:46 +0800 Subject: [PATCH 2/3] =?UTF-8?q?=E6=97=A0JIRA=20=E5=90=8C=E6=AD=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bi.lessconfig.json | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/bi.lessconfig.json b/bi.lessconfig.json index 6651f8914..ff7a96398 100644 --- a/bi.lessconfig.json +++ b/bi.lessconfig.json @@ -27,7 +27,6 @@ "@color-bi-background-disabled-active-radio-content-theme-dark": "#606479", "@color-bi-background-disabled-active-checkbox-content": "#FFFFFF", "@color-bi-background-disabled-active-checkbox-content-theme-dark": "#606479", - "@color-bi-text-header-background": "#647185", "@color-bi-background-tooltip-success": "#2E3A4D", "@color-bi-border-tooltip-success": "#2E3A4D", "@color-bi-background-toast-success": "#FFFFFF", @@ -39,6 +38,6 @@ "@color-bi-color-toast-error": "#E65251", "@color-bi-color-toast-normal": "#2C60DB", "@color-bi-color-toast-text": "#000A19", - "@color-bi-background-header-background": "rgba(9, 30, 64, 0.9)", - "@color-bi-background-header-background-theme-dark": "rgba(255, 255, 255, 0.9)" + "@color-bi-text-header-background": "rgba(9, 30, 64, 0.9)", + "@color-bi-text-header-background-theme-dark": "rgba(255, 255, 255, 0.9)" } From 8692cbe128929076be669deb90617b0f1b334cba Mon Sep 17 00:00:00 2001 From: windy <1374721899@qq.com> Date: Fri, 17 Jun 2022 21:05:27 +0800 Subject: [PATCH 3/3] =?UTF-8?q?=E6=97=A0JIRA=20=E5=90=8C=E6=AD=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/case/combo/textvaluecombo/combo.textvalue.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/case/combo/textvaluecombo/combo.textvalue.js b/src/case/combo/textvaluecombo/combo.textvalue.js index 19b9425e3..633656464 100644 --- a/src/case/combo/textvaluecombo/combo.textvalue.js +++ b/src/case/combo/textvaluecombo/combo.textvalue.js @@ -18,8 +18,8 @@ BI.TextValueCombo = BI.inherit(BI.Widget, { _init: function () { var self = this, o = this.options; - BI.isNumeric(o.width) && (o.width -= 2); - BI.isNumeric(o.height) && (o.height -= 2); + BI.isNumeric(o.width) && (o.width -= (o.simple ? 0 : 2)); + BI.isNumeric(o.height) && (o.height -= (o.simple ? 1 : 2)); o.value = BI.isFunction(o.value) ? this.__watch(o.value, function (context, newValue) { self.setValue(newValue); }) : o.value;