guy 7 years ago
parent
commit
5f74761357
  1. 4
      bi/case.js
  2. 8
      bi/widget.css
  3. 4
      docs/case.js
  4. 8
      docs/widget.css
  5. 4
      src/case/combo/bubblecombo/combo.bubble.js
  6. 8
      src/css/widget/previewtable/previewtable.css
  7. 1
      src/less/widget/previewtable/previewtable.less

4
bi/case.js

@ -3592,6 +3592,10 @@ BI.BubbleCombo = BI.inherit(BI.Widget, {
showView: function () {
this.combo && this.combo.showView();
},
hasView: function () {
return BI.isNotNull(this.combo.getView());
}
});

8
bi/widget.css

@ -397,6 +397,14 @@
/****添加计算宽度的--运算符直接需要space****/
/****** common color(常用颜色,可用于普遍场景) *****/
/**** custom color(自定义颜色,用于特定场景) ****/
.bi-preview-table {
-webkit-user-select: initial;
-khtml-user-select: initial;
-moz-user-select: initial;
-ms-user-select: initial;
-o-user-select: initial;
user-select: initial;
}
.bi-preview-table > div > table > thead > tr.odd,
.bi-preview-table > div > div > div > table > thead > tr.odd {
background-color: #eff1f4;

4
docs/case.js

@ -3592,6 +3592,10 @@ BI.BubbleCombo = BI.inherit(BI.Widget, {
showView: function () {
this.combo && this.combo.showView();
},
hasView: function () {
return BI.isNotNull(this.combo.getView());
}
});

8
docs/widget.css

@ -397,6 +397,14 @@
/****添加计算宽度的--运算符直接需要space****/
/****** common color(常用颜色,可用于普遍场景) *****/
/**** custom color(自定义颜色,用于特定场景) ****/
.bi-preview-table {
-webkit-user-select: initial;
-khtml-user-select: initial;
-moz-user-select: initial;
-ms-user-select: initial;
-o-user-select: initial;
user-select: initial;
}
.bi-preview-table > div > table > thead > tr.odd,
.bi-preview-table > div > div > div > table > thead > tr.odd {
background-color: #eff1f4;

4
src/case/combo/bubblecombo/combo.bubble.js

@ -193,6 +193,10 @@ BI.BubbleCombo = BI.inherit(BI.Widget, {
showView: function () {
this.combo && this.combo.showView();
},
hasView: function () {
return BI.isNotNull(this.combo.getView());
}
});

8
src/css/widget/previewtable/previewtable.css

@ -1,6 +1,14 @@
/****添加计算宽度的--运算符直接需要space****/
/****** common color(常用颜色,可用于普遍场景) *****/
/**** custom color(自定义颜色,用于特定场景) ****/
.bi-preview-table {
-webkit-user-select: initial;
-khtml-user-select: initial;
-moz-user-select: initial;
-ms-user-select: initial;
-o-user-select: initial;
user-select: initial;
}
.bi-preview-table > div > table > thead > tr.odd,
.bi-preview-table > div > div > div > table > thead > tr.odd {
background-color: #eff1f4;

1
src/less/widget/previewtable/previewtable.less

@ -1,6 +1,7 @@
@import "../../bibase";
.bi-preview-table {
.user-select(initial);
& > div > table, & > div > div > div > table {
& > thead > tr.odd {
background-color: @color-bi-background-normal;

Loading…
Cancel
Save