iapyang 6 years ago
parent
commit
9cd0de13c8
  1. 2
      dist/_fineui.min.js
  2. 3
      dist/base.css
  3. 3
      dist/bundle.css
  4. 5
      dist/bundle.js
  5. 4
      dist/bundle.min.js
  6. 5
      dist/case.js
  7. 3
      dist/fineui.css
  8. 5
      dist/fineui.js
  9. 2
      dist/fineui.min.js
  10. 5
      src/case/loader/sort.list.js
  11. 3
      src/css/base/loader/sort.css
  12. 0
      src/less/base/loader/sort.list.less

2
dist/_fineui.min.js vendored

File diff suppressed because one or more lines are too long

3
dist/base.css vendored

@ -927,6 +927,9 @@ li.CodeMirror-hint-active {
cursor: text;
font-size: 14px;
}
.bi-sortable-holder {
border: 1px dashed #d4dadd;
}
.bi-all-count-pager .all-pager-prev {
font-size: 16px;
}

3
dist/bundle.css vendored

@ -2973,6 +2973,9 @@ li.CodeMirror-hint-active {
cursor: text;
font-size: 14px;
}
.bi-sortable-holder {
border: 1px dashed #d4dadd;
}
.bi-all-count-pager .all-pager-prev {
font-size: 16px;
}

5
dist/bundle.js vendored

@ -81905,10 +81905,9 @@ BI.SortList = BI.inherit(BI.Widget, {
placeholder: {
element: function ($currentItem) {
var holder = BI.createWidget({
type: "bi.label",
type: "bi.layout",
cls: "bi-sortable-holder",
width: $currentItem.width() - 2,
height: $currentItem.height() - 2
height: $currentItem.outerHeight() - 2
});
holder.element.css({
"margin-left": $currentItem.css("margin-left"),

4
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

5
dist/case.js vendored

@ -9449,10 +9449,9 @@ BI.SortList = BI.inherit(BI.Widget, {
placeholder: {
element: function ($currentItem) {
var holder = BI.createWidget({
type: "bi.label",
type: "bi.layout",
cls: "bi-sortable-holder",
width: $currentItem.width() - 2,
height: $currentItem.height() - 2
height: $currentItem.outerHeight() - 2
});
holder.element.css({
"margin-left": $currentItem.css("margin-left"),

3
dist/fineui.css vendored

@ -2973,6 +2973,9 @@ li.CodeMirror-hint-active {
cursor: text;
font-size: 14px;
}
.bi-sortable-holder {
border: 1px dashed #d4dadd;
}
.bi-all-count-pager .all-pager-prev {
font-size: 16px;
}

5
dist/fineui.js vendored

@ -82148,10 +82148,9 @@ BI.SortList = BI.inherit(BI.Widget, {
placeholder: {
element: function ($currentItem) {
var holder = BI.createWidget({
type: "bi.label",
type: "bi.layout",
cls: "bi-sortable-holder",
width: $currentItem.width() - 2,
height: $currentItem.height() - 2
height: $currentItem.outerHeight() - 2
});
holder.element.css({
"margin-left": $currentItem.css("margin-left"),

2
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

5
src/case/loader/sort.list.js

@ -65,10 +65,9 @@ BI.SortList = BI.inherit(BI.Widget, {
placeholder: {
element: function ($currentItem) {
var holder = BI.createWidget({
type: "bi.label",
type: "bi.layout",
cls: "bi-sortable-holder",
width: $currentItem.width() - 2,
height: $currentItem.height() - 2
height: $currentItem.outerHeight() - 2
});
holder.element.css({
"margin-left": $currentItem.css("margin-left"),

3
src/css/base/loader/sort.css

@ -0,0 +1,3 @@
.bi-sortable-holder {
border: 1px dashed #d4dadd;
}

0
src/less/case/loader/sort.list.less → src/less/base/loader/sort.list.less

Loading…
Cancel
Save