guy 7 years ago
parent
commit
576790b28f
  1. 1
      demo/js/core/abstract/combination/demo.combo.js
  2. 3
      dist/bundle.css
  3. 2
      dist/bundle.min.css
  4. 3
      dist/core.css
  5. 3
      dist/core_without_normalize.css
  6. 1
      dist/demo.js
  7. 3
      src/css/core/wrapper/flex.center.css
  8. 3
      src/less/core/wrapper/flex.center.less

1
demo/js/core/abstract/combination/demo.combo.js

@ -250,7 +250,6 @@ Demo.Func = BI.inherit(BI.Widget, {
var dynamicCombo = BI.createWidget({
type: "bi.combo",
dynamic: true,
el: {
type: "bi.button",
text: "搜索",

3
dist/bundle.css vendored

@ -1237,6 +1237,9 @@ i {
-o-align-items: center;
align-items: center;
}
.bi-flex-center-layout > * {
margin: auto;
}
.bi-flex-horizontal-layout {
display: box;
/* OLD - Android 4.4- */

2
dist/bundle.min.css vendored

File diff suppressed because one or more lines are too long

3
dist/core.css vendored

@ -1237,6 +1237,9 @@ i {
-o-align-items: center;
align-items: center;
}
.bi-flex-center-layout > * {
margin: auto;
}
.bi-flex-horizontal-layout {
display: box;
/* OLD - Android 4.4- */

3
dist/core_without_normalize.css vendored

@ -954,6 +954,9 @@
-o-align-items: center;
align-items: center;
}
.bi-flex-center-layout > * {
margin: auto;
}
.bi-flex-horizontal-layout {
display: box;
/* OLD - Android 4.4- */

1
dist/demo.js vendored

@ -5966,7 +5966,6 @@ BI.shortcut("demo.combo_group", Demo.Func);Demo.Func = BI.inherit(BI.Widget, {
var dynamicCombo = BI.createWidget({
type: "bi.combo",
dynamic: true,
el: {
type: "bi.button",
text: "搜索",

3
src/css/core/wrapper/flex.center.css

@ -38,3 +38,6 @@
-o-align-items: center;
align-items: center;
}
.bi-flex-center-layout > * {
margin: auto;
}

3
src/less/core/wrapper/flex.center.less

@ -34,4 +34,7 @@
-ms-align-items: center;
-o-align-items: center;
align-items: center;
> * {
margin: auto;
}
}
Loading…
Cancel
Save