Browse Source

Pull request #2774: 无JIRA任务 simple单边框

Merge in VISUAL/fineui from ~WINDY/fui:master to master

* commit '40777dca5d914acdf3565bfc7e4ba591122de6eb':
  无JIRA任务 simple单边框
es6
windy 2 years ago
parent
commit
e0b74b833e
  1. 4
      src/widget/searchmultitextvaluecombo/multitextvalue.combo.search.js

4
src/widget/searchmultitextvaluecombo/multitextvalue.combo.search.js

@ -35,7 +35,7 @@ BI.SearchMultiTextValueCombo = BI.inherit(BI.Single, {
this.trigger = BI.createWidget({
type: "bi.search_multi_select_trigger",
text: o.text,
height: o.height - 2,
height: o.height - (o.simple ? 1 : 2),
// adapter: this.popup,
masker: {
offset: {
@ -111,7 +111,7 @@ BI.SearchMultiTextValueCombo = BI.inherit(BI.Single, {
this.combo = BI.createWidget({
type: "bi.combo",
cls: "bi-border bi-border-radius",
cls: o.simple ? "bi-border-bottom" : "bi-border bi-border-radius",
toggle: false,
container: o.container,
el: this.trigger,

Loading…
Cancel
Save