vxe-table 4.7.61 → 4.7.63
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.en.md +1 -1
- package/README.ja-JP.md +184 -0
- package/README.md +1 -1
- package/README.zh-TW.md +3 -3
- package/es/style.css +1 -1
- package/es/style.min.css +1 -1
- package/es/table/module/menu/panel.js +3 -3
- package/es/table/src/props.js +1 -1
- package/es/table/src/table.js +47 -32
- package/es/table/src/util.js +4 -3
- package/es/table/style.css +542 -0
- package/es/table/style.min.css +1 -1
- package/es/ui/index.js +2 -2
- package/es/ui/src/log.js +1 -1
- package/es/vxe-table/style.css +542 -0
- package/es/vxe-table/style.min.css +1 -1
- package/lib/index.umd.js +51 -32
- package/lib/index.umd.min.js +1 -1
- package/lib/style.css +1 -1
- package/lib/style.min.css +1 -1
- package/lib/table/module/menu/panel.js +3 -3
- package/lib/table/src/props.js +1 -1
- package/lib/table/src/props.min.js +1 -1
- package/lib/table/src/table.js +40 -22
- package/lib/table/src/table.min.js +1 -1
- package/lib/table/src/util.js +4 -3
- package/lib/table/src/util.min.js +1 -1
- package/lib/table/style/style.css +542 -0
- package/lib/table/style/style.min.css +1 -1
- package/lib/ui/index.js +2 -2
- package/lib/ui/index.min.js +1 -1
- package/lib/ui/src/log.js +1 -1
- package/lib/ui/src/log.min.js +1 -1
- package/lib/vxe-table/style/style.css +542 -0
- package/lib/vxe-table/style/style.min.css +1 -1
- package/package.json +2 -2
- package/packages/table/module/menu/panel.ts +3 -3
- package/packages/table/src/props.ts +1 -1
- package/packages/table/src/table.ts +52 -36
- package/packages/table/src/util.ts +4 -3
- package/styles/components/icon.scss +2 -0
- /package/es/{iconfont.1722851815900.ttf → iconfont.1723112033726.ttf} +0 -0
- /package/es/{iconfont.1722851815900.woff → iconfont.1723112033726.woff} +0 -0
- /package/es/{iconfont.1722851815900.woff2 → iconfont.1723112033726.woff2} +0 -0
- /package/lib/{iconfont.1722851815900.ttf → iconfont.1723112033726.ttf} +0 -0
- /package/lib/{iconfont.1722851815900.woff → iconfont.1723112033726.woff} +0 -0
- /package/lib/{iconfont.1722851815900.woff2 → iconfont.1723112033726.woff2} +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.assembleColumn=assembleColumn,exports.clearTableAllStatus=clearTableAllStatus,exports.clearTableDefaultStatus=clearTableDefaultStatus,exports.colToVisible=colToVisible,exports.convertHeaderColumnToRows=void 0,exports.createColumn=createColumn,exports.destroyColumn=destroyColumn,exports.getCellValue=getCellValue,exports.getColReMaxWidth=getColReMaxWidth,exports.getColReMinWidth=getColReMinWidth,exports.getRootColumn=getRootColumn,exports.getRowUniqueId=getRowUniqueId,exports.getRowid=getRowid,exports.getRowkey=getRowkey,exports.handleFieldOrColumn=void 0,exports.isColumnInfo=isColumnInfo,exports.mergeBodyMethod=mergeBodyMethod,exports.removeScrollListener=removeScrollListener,exports.restoreScrollListener=restoreScrollListener,exports.restoreScrollLocation=restoreScrollLocation,exports.rowToVisible=rowToVisible,exports.setCellValue=setCellValue,exports.toFilters=toFilters,exports.toTreePathSeq=toTreePathSeq,exports.watchColumn=watchColumn;var _vue=require("vue"),_xeUtils=_interopRequireDefault(require("xe-utils")),_columnInfo=require("./columnInfo"),_dom=require("../../ui/src/dom");function _interopRequireDefault(e){return e&&e.__esModule?e:{default:e}}const getAllConvertColumns=(e,l)=>{const t=[];return e.forEach(e=>{e.parentId=l?l.id:null,e.visible&&(e.children&&e.children.length&&e.children.some(e=>e.visible)?(t.push(e),t.push(...getAllConvertColumns(e.children,e))):t.push(e))}),t},convertHeaderColumnToRows=e=>{let l=1;const r=(t,e)=>{if(e&&(t.level=e.level+1,l<t.level)&&(l=t.level),t.children&&t.children.length&&t.children.some(e=>e.visible)){let l=0;t.children.forEach(e=>{e.visible&&(r(e,t),l+=e.colSpan)}),t.colSpan=l}else t.colSpan=1},t=(e.forEach(e=>{e.level=1,r(e)}),[]);for(let e=0;e<l;e++)t.push([]);return getAllConvertColumns(e).forEach(e=>{e.children&&e.children.length&&e.children.some(e=>e.visible)?e.rowSpan=1:e.rowSpan=l-e.level+1,t[e.level-1].push(e)}),t};function restoreScrollLocation(e,l,t){const r=e["internalData"];return e.clearScroll().then(()=>{if(l||t)return r.lastScrollLeft=0,r.lastScrollTop=0,e.scrollTo(l,t)})}function removeScrollListener(e){e&&e._onscroll&&(e.onscroll=null)}function restoreScrollListener(e){e&&e._onscroll&&(e.onscroll=e._onscroll)}function getRowUniqueId(){return _xeUtils.default.uniqueId("row_")}function getRowkey(e){var l=e["props"],e=e.getComputeMaps()["computeRowOpts"],l=l["rowId"],e=e.value;return l||e.keyField||"_X_ROW_KEY"}function getRowid(e,l){l=_xeUtils.default.get(l,getRowkey(e));return _xeUtils.default.eqNull(l)?"":encodeURIComponent(l)}exports.convertHeaderColumnToRows=convertHeaderColumnToRows;const handleFieldOrColumn=(e,l)=>l?_xeUtils.default.isString(l)?e.getColumnByField(l):l:null;function getPaddingLeftRightSize(e){return e?(e=getComputedStyle(e),_xeUtils.default.toNumber(e.paddingLeft)+_xeUtils.default.toNumber(e.paddingRight)):0}function getElemenMarginWidth(e){var l,t;return e?(t=getComputedStyle(e),l=_xeUtils.default.toNumber(t.marginLeft),t=_xeUtils.default.toNumber(t.marginRight),e.offsetWidth+l+t):0}function queryCellElement(e,l){return e.querySelector(".vxe-cell"+l)}function toFilters(e){return e&&_xeUtils.default.isArray(e)?e.map(({label:e,value:l,data:t,resetValue:r,checked:o})=>({label:e,value:l,data:t,resetValue:r,checked:!!o,_checked:!!o})):e}function toTreePathSeq(e){return e.map((e,l)=>l%2==0?Number(e)+1:".").join("")}function getCellValue(e,l){return _xeUtils.default.get(e,l.field)}function setCellValue(e,l,t){return _xeUtils.default.set(e,l.field,t)}function getColReMaxWidth(e){var l=e["$table"],l=l.getComputeMaps()["computeResizableOpts"],l=l.value["maxWidth"];if(l){e=_xeUtils.default.isFunction(l)?l(e):l;if("auto"!==e)return Math.max(1,_xeUtils.default.toNumber(e))}return-1}function getColReMinWidth(e){var{$table:l,column:t,cell:r}=e,o=l["props"],n=l.getComputeMaps()["computeResizableOpts"],n=n.value["minWidth"];if(n){e=_xeUtils.default.isFunction(n)?n(e):n;if("auto"!==e)return Math.max(1,_xeUtils.default.toNumber(e))}var i,a,n=o["showHeaderOverflow"],{showHeaderOverflow:e,minWidth:o}=t,t=_xeUtils.default.isUndefined(e)||_xeUtils.default.isNull(e)?n:e,n="title"===t||(!0===t||"tooltip"===t)||"ellipsis"===t;let u=_xeUtils.default.floor(1.6*(_xeUtils.default.toNumber(getComputedStyle(r).fontSize)||14))+(getPaddingLeftRightSize(r)+getPaddingLeftRightSize(queryCellElement(r,"")));if(n&&(e=getPaddingLeftRightSize(queryCellElement(r,"--title>.vxe-cell--checkbox")),t=getElemenMarginWidth(queryCellElement(r,">.vxe-cell--required-icon")),n=getElemenMarginWidth(queryCellElement(r,">.vxe-cell--edit-icon")),s=getElemenMarginWidth(queryCellElement(r,">.vxe-cell-title-prefix-icon")),i=getElemenMarginWidth(queryCellElement(r,">.vxe-cell-title-suffix-icon")),a=getElemenMarginWidth(queryCellElement(r,">.vxe-cell--sort")),r=getElemenMarginWidth(queryCellElement(r,">.vxe-cell--filter")),u+=e+t+n+s+i+r+a),o){var s,e=l.getRefMaps()["refTableBody"],t=e.value,n=t?t.$el:null;if(n){if((0,_dom.isScale)(o))return s=(n.clientWidth-1)/100,Math.max(u,Math.floor(_xeUtils.default.toInteger(o)*s));if((0,_dom.isPx)(o))return Math.max(u,_xeUtils.default.toInteger(o))}}return u}function isColumnInfo(e){return e&&(e.constructor===_columnInfo.ColumnInfo||e instanceof _columnInfo.ColumnInfo)}function createColumn(e,l,t){return isColumnInfo(l)?l:(0,_vue.reactive)(new _columnInfo.ColumnInfo(e,l,t))}function watchColumn(t,e,r){Object.keys(e).forEach(l=>{(0,_vue.watch)(()=>e[l],e=>{r.update(l,e),t&&("filters"===l?(t.setFilter(r,e),t.handleUpdateDataQueue()):["visible","fixed","width","minWidth","maxWidth"].includes(l)&&t.handleRefreshColumnQueue())})})}function assembleColumn(e,l,t,r){var e=e["reactData"],o=e["staticColumns"],n=l.parentNode,r=r?r.column:null,r=r?r.children:o;n&&r&&(r.splice(_xeUtils.default.arrayIndexOf(n.children,l),0,t),e.staticColumns=o.slice(0))}function destroyColumn(e,l){var e=e["reactData"],t=e["staticColumns"],r=_xeUtils.default.findTree(t,e=>e.id===l.id,{children:"children"});r&&r.items.splice(r.index,1),e.staticColumns=t.slice(0)}function getRootColumn(e,l){var e=e["internalData"],t=e["fullColumnIdData"];if(!l)return null;let r=l.parentId;for(;t[r];){const l=t[r].column;if(!(r=l.parentId))return l}return l}function mergeBodyMethod(l,t,r){for(let e=0;e<l.length;e++){var{row:o,col:n,rowspan:i,colspan:a}=l[e];if(-1<n&&-1<o&&i&&a){if(o===t&&n===r)return{rowspan:i,colspan:a};if(o<=t&&t<o+i&&n<=r&&r<n+a)return{rowspan:0,colspan:0}}}}function clearTableDefaultStatus(e){var{props:l,internalData:t}=e;return t.initStatus=!1,e.clearSort(),e.clearCurrentRow(),e.clearCurrentColumn(),e.clearRadioRow(),e.clearRadioReserve(),e.clearCheckboxRow(),e.clearCheckboxReserve(),e.clearRowExpand(),e.clearTreeExpand(),e.clearTreeExpandReserve(),e.clearPendingRow(),e.clearFilter&&e.clearFilter(),e.clearSelected&&(l.keyboardConfig||l.mouseConfig)&&e.clearSelected(),e.clearCellAreas&&l.mouseConfig&&(e.clearCellAreas(),e.clearCopyCellArea()),e.clearScroll()}function clearTableAllStatus(e){return e.clearFilter&&e.clearFilter(),clearTableDefaultStatus(e)}function rowToVisible(e,l){var{reactData:t,internalData:r}=e,o=e.getRefMaps()["refTableBody"],t=t["scrollYLoad"],{afterFullData:r,scrollYStore:n}=r,o=o.value,o=o?o.$el:null;if(o){var i=o.querySelector(`[rowid="${getRowid(e,l)}"]`);if(i){var a=o.clientHeight,o=o.scrollTop,u=i.offsetParent,u=i.offsetTop+(u?u.offsetTop:0),i=i.clientHeight;if(u<o||o+a<u)return e.scrollTo(null,u);if(a+o<=u+i)return e.scrollTo(null,o+i)}else if(t)return e.scrollTo(null,(
|
|
1
|
+
"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.assembleColumn=assembleColumn,exports.clearTableAllStatus=clearTableAllStatus,exports.clearTableDefaultStatus=clearTableDefaultStatus,exports.colToVisible=colToVisible,exports.convertHeaderColumnToRows=void 0,exports.createColumn=createColumn,exports.destroyColumn=destroyColumn,exports.getCellValue=getCellValue,exports.getColReMaxWidth=getColReMaxWidth,exports.getColReMinWidth=getColReMinWidth,exports.getRootColumn=getRootColumn,exports.getRowUniqueId=getRowUniqueId,exports.getRowid=getRowid,exports.getRowkey=getRowkey,exports.handleFieldOrColumn=void 0,exports.isColumnInfo=isColumnInfo,exports.mergeBodyMethod=mergeBodyMethod,exports.removeScrollListener=removeScrollListener,exports.restoreScrollListener=restoreScrollListener,exports.restoreScrollLocation=restoreScrollLocation,exports.rowToVisible=rowToVisible,exports.setCellValue=setCellValue,exports.toFilters=toFilters,exports.toTreePathSeq=toTreePathSeq,exports.watchColumn=watchColumn;var _vue=require("vue"),_xeUtils=_interopRequireDefault(require("xe-utils")),_columnInfo=require("./columnInfo"),_dom=require("../../ui/src/dom");function _interopRequireDefault(e){return e&&e.__esModule?e:{default:e}}const getAllConvertColumns=(e,l)=>{const t=[];return e.forEach(e=>{e.parentId=l?l.id:null,e.visible&&(e.children&&e.children.length&&e.children.some(e=>e.visible)?(t.push(e),t.push(...getAllConvertColumns(e.children,e))):t.push(e))}),t},convertHeaderColumnToRows=e=>{let l=1;const r=(t,e)=>{if(e&&(t.level=e.level+1,l<t.level)&&(l=t.level),t.children&&t.children.length&&t.children.some(e=>e.visible)){let l=0;t.children.forEach(e=>{e.visible&&(r(e,t),l+=e.colSpan)}),t.colSpan=l}else t.colSpan=1},t=(e.forEach(e=>{e.level=1,r(e)}),[]);for(let e=0;e<l;e++)t.push([]);return getAllConvertColumns(e).forEach(e=>{e.children&&e.children.length&&e.children.some(e=>e.visible)?e.rowSpan=1:e.rowSpan=l-e.level+1,t[e.level-1].push(e)}),t};function restoreScrollLocation(e,l,t){const r=e["internalData"];return e.clearScroll().then(()=>{if(l||t)return r.lastScrollLeft=0,r.lastScrollTop=0,e.scrollTo(l,t)})}function removeScrollListener(e){e&&e._onscroll&&(e.onscroll=null)}function restoreScrollListener(e){e&&e._onscroll&&(e.onscroll=e._onscroll)}function getRowUniqueId(){return _xeUtils.default.uniqueId("row_")}function getRowkey(e){var l=e["props"],e=e.getComputeMaps()["computeRowOpts"],l=l["rowId"],e=e.value;return l||e.keyField||"_X_ROW_KEY"}function getRowid(e,l){l=_xeUtils.default.get(l,getRowkey(e));return _xeUtils.default.eqNull(l)?"":encodeURIComponent(l)}exports.convertHeaderColumnToRows=convertHeaderColumnToRows;const handleFieldOrColumn=(e,l)=>l?_xeUtils.default.isString(l)?e.getColumnByField(l):l:null;function getPaddingLeftRightSize(e){return e?(e=getComputedStyle(e),_xeUtils.default.toNumber(e.paddingLeft)+_xeUtils.default.toNumber(e.paddingRight)):0}function getElemenMarginWidth(e){var l,t;return e?(t=getComputedStyle(e),l=_xeUtils.default.toNumber(t.marginLeft),t=_xeUtils.default.toNumber(t.marginRight),e.offsetWidth+l+t):0}function queryCellElement(e,l){return e.querySelector(".vxe-cell"+l)}function toFilters(e){return e&&_xeUtils.default.isArray(e)?e.map(({label:e,value:l,data:t,resetValue:r,checked:o})=>({label:e,value:l,data:t,resetValue:r,checked:!!o,_checked:!!o})):e}function toTreePathSeq(e){return e.map((e,l)=>l%2==0?Number(e)+1:".").join("")}function getCellValue(e,l){return _xeUtils.default.get(e,l.field)}function setCellValue(e,l,t){return _xeUtils.default.set(e,l.field,t)}function getColReMaxWidth(e){var l=e["$table"],l=l.getComputeMaps()["computeResizableOpts"],l=l.value["maxWidth"];if(l){e=_xeUtils.default.isFunction(l)?l(e):l;if("auto"!==e)return Math.max(1,_xeUtils.default.toNumber(e))}return-1}function getColReMinWidth(e){var{$table:l,column:t,cell:r}=e,o=l["props"],n=l.getComputeMaps()["computeResizableOpts"],n=n.value["minWidth"];if(n){e=_xeUtils.default.isFunction(n)?n(e):n;if("auto"!==e)return Math.max(1,_xeUtils.default.toNumber(e))}var i,a,n=o["showHeaderOverflow"],{showHeaderOverflow:e,minWidth:o}=t,t=_xeUtils.default.isUndefined(e)||_xeUtils.default.isNull(e)?n:e,n="title"===t||(!0===t||"tooltip"===t)||"ellipsis"===t;let u=_xeUtils.default.floor(1.6*(_xeUtils.default.toNumber(getComputedStyle(r).fontSize)||14))+(getPaddingLeftRightSize(r)+getPaddingLeftRightSize(queryCellElement(r,"")));if(n&&(e=getPaddingLeftRightSize(queryCellElement(r,"--title>.vxe-cell--checkbox")),t=getElemenMarginWidth(queryCellElement(r,">.vxe-cell--required-icon")),n=getElemenMarginWidth(queryCellElement(r,">.vxe-cell--edit-icon")),s=getElemenMarginWidth(queryCellElement(r,">.vxe-cell-title-prefix-icon")),i=getElemenMarginWidth(queryCellElement(r,">.vxe-cell-title-suffix-icon")),a=getElemenMarginWidth(queryCellElement(r,">.vxe-cell--sort")),r=getElemenMarginWidth(queryCellElement(r,">.vxe-cell--filter")),u+=e+t+n+s+i+r+a),o){var s,e=l.getRefMaps()["refTableBody"],t=e.value,n=t?t.$el:null;if(n){if((0,_dom.isScale)(o))return s=(n.clientWidth-1)/100,Math.max(u,Math.floor(_xeUtils.default.toInteger(o)*s));if((0,_dom.isPx)(o))return Math.max(u,_xeUtils.default.toInteger(o))}}return u}function isColumnInfo(e){return e&&(e.constructor===_columnInfo.ColumnInfo||e instanceof _columnInfo.ColumnInfo)}function createColumn(e,l,t){return isColumnInfo(l)?l:(0,_vue.reactive)(new _columnInfo.ColumnInfo(e,l,t))}function watchColumn(t,e,r){Object.keys(e).forEach(l=>{(0,_vue.watch)(()=>e[l],e=>{r.update(l,e),t&&("filters"===l?(t.setFilter(r,e),t.handleUpdateDataQueue()):["visible","fixed","width","minWidth","maxWidth"].includes(l)&&t.handleRefreshColumnQueue())})})}function assembleColumn(e,l,t,r){var e=e["reactData"],o=e["staticColumns"],n=l.parentNode,r=r?r.column:null,r=r?r.children:o;n&&r&&(r.splice(_xeUtils.default.arrayIndexOf(n.children,l),0,t),e.staticColumns=o.slice(0))}function destroyColumn(e,l){var e=e["reactData"],t=e["staticColumns"],r=_xeUtils.default.findTree(t,e=>e.id===l.id,{children:"children"});r&&r.items.splice(r.index,1),e.staticColumns=t.slice(0)}function getRootColumn(e,l){var e=e["internalData"],t=e["fullColumnIdData"];if(!l)return null;let r=l.parentId;for(;t[r];){const l=t[r].column;if(!(r=l.parentId))return l}return l}function mergeBodyMethod(l,t,r){for(let e=0;e<l.length;e++){var{row:o,col:n,rowspan:i,colspan:a}=l[e];if(-1<n&&-1<o&&i&&a){if(o===t&&n===r)return{rowspan:i,colspan:a};if(o<=t&&t<o+i&&n<=r&&r<n+a)return{rowspan:0,colspan:0}}}}function clearTableDefaultStatus(e){var{props:l,internalData:t}=e;return t.initStatus=!1,e.clearSort(),e.clearCurrentRow(),e.clearCurrentColumn(),e.clearRadioRow(),e.clearRadioReserve(),e.clearCheckboxRow(),e.clearCheckboxReserve(),e.clearRowExpand(),e.clearTreeExpand(),e.clearTreeExpandReserve(),e.clearPendingRow(),e.clearFilter&&e.clearFilter(),e.clearSelected&&(l.keyboardConfig||l.mouseConfig)&&e.clearSelected(),e.clearCellAreas&&l.mouseConfig&&(e.clearCellAreas(),e.clearCopyCellArea()),e.clearScroll()}function clearTableAllStatus(e){return e.clearFilter&&e.clearFilter(),clearTableDefaultStatus(e)}function rowToVisible(e,l){var{reactData:t,internalData:r}=e,o=e.getRefMaps()["refTableBody"],t=t["scrollYLoad"],{afterFullData:r,scrollYStore:n}=r,o=o.value,o=o?o.$el:null;if(o){var i=o.querySelector(`[rowid="${getRowid(e,l)}"]`);if(i){var a=o.clientHeight,o=o.scrollTop,u=i.offsetParent,u=i.offsetTop+(u?u.offsetTop:0),i=i.clientHeight;if(u<o||o+a<u)return e.scrollTo(null,u);if(a+o<=u+i)return e.scrollTo(null,o+i)}else if(t)return e.scrollTo(null,(e.findRowIndexOf(r,l)-1)*n.rowHeight)}return Promise.resolve()}function colToVisible(e,t){var{reactData:l,internalData:r}=e,o=e.getRefMaps()["refTableBody"],l=l["scrollXLoad"],n=r["visibleColumn"],r=o.value,o=r?r.$el:null;if(o){r=o.querySelector("."+t.id);if(r){var i=o.clientWidth,o=o.scrollLeft,a=r.offsetParent,a=r.offsetLeft+(a?a.offsetLeft:0),r=r.clientWidth;if(a<o||o+i<a)return e.scrollTo(a);if(i+o<=a+r)return e.scrollTo(o+r)}else if(l){let l=0;for(let e=0;e<n.length;e++){var u=n[e];if(u===t||u.id===t.id)break;l+=u.renderWidth}return e.scrollTo(l)}}return Promise.resolve()}exports.handleFieldOrColumn=handleFieldOrColumn;
|
|
@@ -1,4 +1,546 @@
|
|
|
1
1
|
@charset "UTF-8";
|
|
2
|
+
[class*=vxe-icon--] {
|
|
3
|
+
display: inline-block;
|
|
4
|
+
vertical-align: middle;
|
|
5
|
+
position: relative;
|
|
6
|
+
direction: ltr;
|
|
7
|
+
font-family: Verdana, Arial, Tahoma;
|
|
8
|
+
font-weight: normal;
|
|
9
|
+
-webkit-user-select: none;
|
|
10
|
+
-moz-user-select: none;
|
|
11
|
+
user-select: none;
|
|
12
|
+
}
|
|
13
|
+
[class*=vxe-icon--].rotate45 {
|
|
14
|
+
transform: rotate(45deg);
|
|
15
|
+
}
|
|
16
|
+
[class*=vxe-icon--].rotate90 {
|
|
17
|
+
transform: rotate(90deg);
|
|
18
|
+
}
|
|
19
|
+
[class*=vxe-icon--].rotate180 {
|
|
20
|
+
transform: rotate(180deg);
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.vxe-icon--search, .vxe-icon--print, .vxe-icon--dot, .vxe-icon--calendar, .vxe-icon--eye,
|
|
24
|
+
.vxe-icon--eye-slash, .vxe-icon--upload,
|
|
25
|
+
.vxe-icon--download, .vxe-icon--error, .vxe-icon--remove, .vxe-icon--circle-plus, .vxe-icon--success, .vxe-icon--warning, .vxe-icon--info, .vxe-icon--question, .vxe-icon--refresh, .vxe-icon--minus, .vxe-icon--close, .vxe-icon--check, .vxe-icon--plus, .vxe-icon--more, .vxe-icon--edit-outline, .vxe-icon--funnel, .vxe-icon--d-arrow-left, .vxe-icon--d-arrow-right, .vxe-icon--arrow-top, .vxe-icon--arrow-right, .vxe-icon--arrow-left, .vxe-icon--arrow-bottom, .vxe-icon--caret-right, .vxe-icon--caret-left, .vxe-icon--caret-bottom, .vxe-icon--caret-top, .vxe-icon--menu, .vxe-icon--zoomout, .vxe-icon--zoomin, .vxe-icon--square {
|
|
26
|
+
width: 1em;
|
|
27
|
+
height: 1em;
|
|
28
|
+
line-height: 1em;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.vxe-icon--search:after, .vxe-icon--search:before, .vxe-icon--print:after, .vxe-icon--print:before, .vxe-icon--dot:before, .vxe-icon--calendar:after, .vxe-icon--calendar:before, .vxe-icon--eye-slash:after, .vxe-icon--eye:before,
|
|
32
|
+
.vxe-icon--eye-slash:before, .vxe-icon--upload:after,
|
|
33
|
+
.vxe-icon--download:after, .vxe-icon--upload:before,
|
|
34
|
+
.vxe-icon--download:before, .vxe-icon--error:after, .vxe-icon--remove:after, .vxe-icon--circle-plus:after, .vxe-icon--success:after, .vxe-icon--warning:after, .vxe-icon--info:after, .vxe-icon--question:after, .vxe-icon--refresh:before, .vxe-icon--refresh:after, .vxe-icon--minus:before, .vxe-icon--close:before, .vxe-icon--check:before, .vxe-icon--plus:before, .vxe-icon--more:before, .vxe-icon--edit-outline:after, .vxe-icon--edit-outline:before, .vxe-icon--funnel:after, .vxe-icon--funnel:before, .vxe-icon--d-arrow-left:before, .vxe-icon--d-arrow-right:before, .vxe-icon--d-arrow-left:after, .vxe-icon--d-arrow-right:after, .vxe-icon--arrow-top:before, .vxe-icon--arrow-right:before, .vxe-icon--arrow-left:before, .vxe-icon--arrow-bottom:before, .vxe-icon--caret-right:before, .vxe-icon--caret-left:before, .vxe-icon--caret-bottom:before, .vxe-icon--caret-top:before, .vxe-icon--zoomout:after, .vxe-icon--zoomout:before, .vxe-icon--zoomin:before, .vxe-icon--zoomin:after, .vxe-icon--square:before {
|
|
35
|
+
content: "";
|
|
36
|
+
position: absolute;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.vxe-icon--square:before {
|
|
40
|
+
left: 0.05em;
|
|
41
|
+
top: 0.05em;
|
|
42
|
+
width: 0.9em;
|
|
43
|
+
height: 0.9em;
|
|
44
|
+
border-width: 0.1em;
|
|
45
|
+
border-style: solid;
|
|
46
|
+
border-color: inherit;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.vxe-icon--zoomin {
|
|
50
|
+
border-width: 0.1em;
|
|
51
|
+
border-style: solid;
|
|
52
|
+
border-color: inherit;
|
|
53
|
+
background-color: var(--vxe-ui-layout-background-color);
|
|
54
|
+
}
|
|
55
|
+
.vxe-icon--zoomin:before, .vxe-icon--zoomin:after {
|
|
56
|
+
background-color: inherit;
|
|
57
|
+
}
|
|
58
|
+
.vxe-icon--zoomin:before {
|
|
59
|
+
left: -0.1em;
|
|
60
|
+
top: 0.2em;
|
|
61
|
+
width: 1.1em;
|
|
62
|
+
height: 0.4em;
|
|
63
|
+
}
|
|
64
|
+
.vxe-icon--zoomin:after {
|
|
65
|
+
top: -0.1em;
|
|
66
|
+
left: 0.2em;
|
|
67
|
+
width: 0.4em;
|
|
68
|
+
height: 1.1em;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.vxe-icon--zoomout {
|
|
72
|
+
position: relative;
|
|
73
|
+
}
|
|
74
|
+
.vxe-icon--zoomout:before {
|
|
75
|
+
right: 0;
|
|
76
|
+
top: 0;
|
|
77
|
+
width: 0.7em;
|
|
78
|
+
height: 0.7em;
|
|
79
|
+
border-width: 0.1em;
|
|
80
|
+
border-style: solid;
|
|
81
|
+
border-color: inherit;
|
|
82
|
+
}
|
|
83
|
+
.vxe-icon--zoomout:after {
|
|
84
|
+
left: 0.1em;
|
|
85
|
+
bottom: 0.1em;
|
|
86
|
+
width: 0.7em;
|
|
87
|
+
height: 0.7em;
|
|
88
|
+
border-width: 0.1em;
|
|
89
|
+
border-style: solid;
|
|
90
|
+
border-color: inherit;
|
|
91
|
+
background-color: var(--vxe-ui-layout-background-color);
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.vxe-icon--menu:before {
|
|
95
|
+
content: "";
|
|
96
|
+
display: inline-block;
|
|
97
|
+
width: 0.22em;
|
|
98
|
+
height: 0.22em;
|
|
99
|
+
box-shadow: 0 -0.36em 0, -0.36em -0.36em 0, 0.36em -0.36em 0, 0 0 0 1em inset, -0.36em 0 0, 0.36em 0 0, 0 0.36em 0, -0.36em 0.36em 0, 0.36em 0.36em 0;
|
|
100
|
+
margin: 0.26em;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
.vxe-icon--caret-right:before, .vxe-icon--caret-left:before, .vxe-icon--caret-bottom:before, .vxe-icon--caret-top:before {
|
|
104
|
+
border-width: 0.4em;
|
|
105
|
+
border-style: solid;
|
|
106
|
+
border-color: transparent;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
.vxe-icon--caret-top:before {
|
|
110
|
+
left: 0.1em;
|
|
111
|
+
bottom: 0.3em;
|
|
112
|
+
border-bottom-color: inherit;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
.vxe-icon--caret-bottom:before {
|
|
116
|
+
left: 0.1em;
|
|
117
|
+
top: 0.3em;
|
|
118
|
+
border-top-color: inherit;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
.vxe-icon--caret-left:before {
|
|
122
|
+
right: 0.3em;
|
|
123
|
+
bottom: 0.1em;
|
|
124
|
+
border-right-color: inherit;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
.vxe-icon--caret-right:before {
|
|
128
|
+
left: 0.3em;
|
|
129
|
+
bottom: 0.1em;
|
|
130
|
+
border-left-color: inherit;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
.vxe-icon--arrow-top:before, .vxe-icon--arrow-right:before, .vxe-icon--arrow-left:before, .vxe-icon--arrow-bottom:before {
|
|
134
|
+
top: 0.4em;
|
|
135
|
+
left: 0.14em;
|
|
136
|
+
width: 0.7em;
|
|
137
|
+
height: 0.7em;
|
|
138
|
+
border-width: 0.15em;
|
|
139
|
+
border-style: solid;
|
|
140
|
+
border-top-color: inherit;
|
|
141
|
+
border-right-color: inherit;
|
|
142
|
+
border-bottom-color: transparent;
|
|
143
|
+
border-left-color: transparent;
|
|
144
|
+
border-radius: 0.15em;
|
|
145
|
+
transform: rotate(-45deg);
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
.vxe-icon--arrow-bottom:before {
|
|
149
|
+
top: 0;
|
|
150
|
+
left: 0.14em;
|
|
151
|
+
transform: rotate(135deg);
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
.vxe-icon--arrow-left:before {
|
|
155
|
+
top: 0.18em;
|
|
156
|
+
left: 0.35em;
|
|
157
|
+
transform: rotate(-135deg);
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
.vxe-icon--arrow-right:before {
|
|
161
|
+
top: 0.18em;
|
|
162
|
+
left: 0;
|
|
163
|
+
transform: rotate(45deg);
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
.vxe-icon--d-arrow-left:before, .vxe-icon--d-arrow-right:before {
|
|
167
|
+
left: 0.15em;
|
|
168
|
+
}
|
|
169
|
+
.vxe-icon--d-arrow-left:after, .vxe-icon--d-arrow-right:after {
|
|
170
|
+
left: 0.58em;
|
|
171
|
+
}
|
|
172
|
+
.vxe-icon--d-arrow-left:before, .vxe-icon--d-arrow-right:before, .vxe-icon--d-arrow-left:after, .vxe-icon--d-arrow-right:after {
|
|
173
|
+
top: 0.18em;
|
|
174
|
+
width: 0.7em;
|
|
175
|
+
height: 0.7em;
|
|
176
|
+
border-width: 0.15em;
|
|
177
|
+
border-style: solid;
|
|
178
|
+
border-top-color: inherit;
|
|
179
|
+
border-right-color: transparent;
|
|
180
|
+
border-bottom-color: transparent;
|
|
181
|
+
border-left-color: inherit;
|
|
182
|
+
border-radius: 0.15em;
|
|
183
|
+
transform: rotate(-45deg);
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
.vxe-icon--d-arrow-right:before, .vxe-icon--d-arrow-right:after {
|
|
187
|
+
transform: rotate(135deg);
|
|
188
|
+
}
|
|
189
|
+
.vxe-icon--d-arrow-right:before {
|
|
190
|
+
left: -0.25em;
|
|
191
|
+
}
|
|
192
|
+
.vxe-icon--d-arrow-right:after {
|
|
193
|
+
left: 0.18em;
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
.vxe-icon--funnel:before {
|
|
197
|
+
top: 0.05em;
|
|
198
|
+
left: 0;
|
|
199
|
+
border-width: 0.5em;
|
|
200
|
+
border-style: solid;
|
|
201
|
+
border-top-color: inherit;
|
|
202
|
+
border-right-color: transparent;
|
|
203
|
+
border-bottom-color: transparent;
|
|
204
|
+
border-left-color: transparent;
|
|
205
|
+
}
|
|
206
|
+
.vxe-icon--funnel:after {
|
|
207
|
+
left: 0.41em;
|
|
208
|
+
top: 0.4em;
|
|
209
|
+
width: 0;
|
|
210
|
+
height: 0.5em;
|
|
211
|
+
border-width: 0 0.2em 0 0;
|
|
212
|
+
border-style: solid;
|
|
213
|
+
border-right-color: inherit;
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
.vxe-icon--edit-outline:before {
|
|
217
|
+
height: 0.84em;
|
|
218
|
+
width: 0.86em;
|
|
219
|
+
top: 0.1em;
|
|
220
|
+
left: 0.02em;
|
|
221
|
+
border-radius: 0.2em;
|
|
222
|
+
border-width: 0.1em;
|
|
223
|
+
border-style: solid;
|
|
224
|
+
border-color: inherit;
|
|
225
|
+
}
|
|
226
|
+
.vxe-icon--edit-outline:after {
|
|
227
|
+
left: 0.6em;
|
|
228
|
+
bottom: 0.2em;
|
|
229
|
+
width: 0;
|
|
230
|
+
height: 0.8em;
|
|
231
|
+
border-radius: 0 0 80% 80%;
|
|
232
|
+
border-width: 0 0 0 0.22em;
|
|
233
|
+
border-style: solid;
|
|
234
|
+
border-color: inherit;
|
|
235
|
+
transform: rotate(45deg);
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
.vxe-icon--more:before {
|
|
239
|
+
content: "...";
|
|
240
|
+
top: 0;
|
|
241
|
+
left: 0.1em;
|
|
242
|
+
line-height: 0.5em;
|
|
243
|
+
font-weight: 700;
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
.vxe-icon--plus:before {
|
|
247
|
+
content: "+";
|
|
248
|
+
left: -0.12em;
|
|
249
|
+
bottom: -0.1em;
|
|
250
|
+
line-height: 1em;
|
|
251
|
+
font-size: 1.6em;
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
.vxe-icon--check:before {
|
|
255
|
+
left: 0.25em;
|
|
256
|
+
bottom: 0.2em;
|
|
257
|
+
width: 0.5em;
|
|
258
|
+
height: 0.9em;
|
|
259
|
+
border-width: 0.15em;
|
|
260
|
+
border-style: solid;
|
|
261
|
+
border-top-color: transparent;
|
|
262
|
+
border-right-color: inherit;
|
|
263
|
+
border-bottom-color: inherit;
|
|
264
|
+
border-radius: 0.15em;
|
|
265
|
+
border-left-color: transparent;
|
|
266
|
+
transform: rotate(45deg);
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
.vxe-icon--close:before {
|
|
270
|
+
content: "+";
|
|
271
|
+
left: -0.1em;
|
|
272
|
+
bottom: -0.16em;
|
|
273
|
+
line-height: 1em;
|
|
274
|
+
font-size: 1.8em;
|
|
275
|
+
transform: rotate(45deg);
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
.vxe-icon--minus:before {
|
|
279
|
+
content: "─";
|
|
280
|
+
left: 0;
|
|
281
|
+
bottom: 0;
|
|
282
|
+
width: 100%;
|
|
283
|
+
text-align: center;
|
|
284
|
+
line-height: 0.9em;
|
|
285
|
+
font-size: 1.2em;
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
.vxe-icon--refresh {
|
|
289
|
+
border-width: 0.1em;
|
|
290
|
+
border-style: solid;
|
|
291
|
+
border-radius: 50%;
|
|
292
|
+
border-right-color: transparent !important;
|
|
293
|
+
border-left-color: transparent !important;
|
|
294
|
+
}
|
|
295
|
+
.vxe-icon--refresh:before {
|
|
296
|
+
left: 50%;
|
|
297
|
+
top: 0;
|
|
298
|
+
transform: translateX(50%) rotate(-45deg);
|
|
299
|
+
}
|
|
300
|
+
.vxe-icon--refresh:after {
|
|
301
|
+
right: 50%;
|
|
302
|
+
bottom: 0;
|
|
303
|
+
transform: translateX(-50%) rotate(135deg);
|
|
304
|
+
}
|
|
305
|
+
.vxe-icon--refresh:before, .vxe-icon--refresh:after {
|
|
306
|
+
width: 0;
|
|
307
|
+
height: 0;
|
|
308
|
+
border-width: 0.25em;
|
|
309
|
+
border-style: solid;
|
|
310
|
+
border-right-color: transparent;
|
|
311
|
+
border-bottom-color: transparent;
|
|
312
|
+
border-left-color: transparent;
|
|
313
|
+
}
|
|
314
|
+
.vxe-icon--refresh.roll {
|
|
315
|
+
animation: rollCircle 1s infinite linear;
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
@keyframes rollCircle {
|
|
319
|
+
0% {
|
|
320
|
+
transform: rotate(0deg);
|
|
321
|
+
}
|
|
322
|
+
100% {
|
|
323
|
+
transform: rotate(360deg);
|
|
324
|
+
}
|
|
325
|
+
}
|
|
326
|
+
.vxe-icon--error:before, .vxe-icon--remove:before, .vxe-icon--circle-plus:before, .vxe-icon--success:before, .vxe-icon--warning:before, .vxe-icon--info:before, .vxe-icon--question:before {
|
|
327
|
+
content: "";
|
|
328
|
+
border-radius: 50%;
|
|
329
|
+
border-width: 0.5em;
|
|
330
|
+
border-style: solid;
|
|
331
|
+
border-color: inherit;
|
|
332
|
+
position: absolute;
|
|
333
|
+
top: 0;
|
|
334
|
+
left: 0;
|
|
335
|
+
transform: scale(0.95);
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
.vxe-icon--warning:after, .vxe-icon--info:after, .vxe-icon--question:after {
|
|
339
|
+
left: 0;
|
|
340
|
+
bottom: 0;
|
|
341
|
+
width: 100%;
|
|
342
|
+
text-align: center;
|
|
343
|
+
color: var(--vxe-ui-layout-background-color);
|
|
344
|
+
transform: rotate(-10deg) scale(0.75);
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
.vxe-icon--question:after {
|
|
348
|
+
content: "?";
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
.vxe-icon--info:after {
|
|
352
|
+
content: "¡";
|
|
353
|
+
}
|
|
354
|
+
|
|
355
|
+
.vxe-icon--warning:after {
|
|
356
|
+
content: "!";
|
|
357
|
+
}
|
|
358
|
+
|
|
359
|
+
.vxe-icon--success:after {
|
|
360
|
+
content: "✓";
|
|
361
|
+
left: 0.25em;
|
|
362
|
+
bottom: 0;
|
|
363
|
+
color: var(--vxe-ui-layout-background-color);
|
|
364
|
+
font-size: 0.65em;
|
|
365
|
+
}
|
|
366
|
+
|
|
367
|
+
.vxe-icon--circle-plus:after {
|
|
368
|
+
content: "+";
|
|
369
|
+
left: 0;
|
|
370
|
+
bottom: 0;
|
|
371
|
+
width: 100%;
|
|
372
|
+
text-align: center;
|
|
373
|
+
color: var(--vxe-ui-layout-background-color);
|
|
374
|
+
line-height: 1.4em;
|
|
375
|
+
font-size: 0.8em;
|
|
376
|
+
}
|
|
377
|
+
|
|
378
|
+
.vxe-icon--remove:after {
|
|
379
|
+
content: "─";
|
|
380
|
+
left: 0;
|
|
381
|
+
bottom: 0;
|
|
382
|
+
width: 100%;
|
|
383
|
+
text-align: center;
|
|
384
|
+
line-height: 1.5em;
|
|
385
|
+
color: var(--vxe-ui-layout-background-color);
|
|
386
|
+
font-size: 0.7em;
|
|
387
|
+
}
|
|
388
|
+
|
|
389
|
+
.vxe-icon--error:after {
|
|
390
|
+
content: "×";
|
|
391
|
+
left: 0;
|
|
392
|
+
bottom: 0;
|
|
393
|
+
width: 100%;
|
|
394
|
+
line-height: 1.4em;
|
|
395
|
+
text-align: center;
|
|
396
|
+
color: var(--vxe-ui-layout-background-color);
|
|
397
|
+
font-size: 0.8em;
|
|
398
|
+
}
|
|
399
|
+
|
|
400
|
+
.vxe-icon--upload,
|
|
401
|
+
.vxe-icon--download {
|
|
402
|
+
overflow: hidden;
|
|
403
|
+
}
|
|
404
|
+
.vxe-icon--upload:before,
|
|
405
|
+
.vxe-icon--download:before {
|
|
406
|
+
left: 0;
|
|
407
|
+
width: 1em;
|
|
408
|
+
border-width: 0;
|
|
409
|
+
border-style: solid;
|
|
410
|
+
border-color: inherit;
|
|
411
|
+
}
|
|
412
|
+
.vxe-icon--upload:after,
|
|
413
|
+
.vxe-icon--download:after {
|
|
414
|
+
width: 100%;
|
|
415
|
+
text-align: center;
|
|
416
|
+
font-size: 2em;
|
|
417
|
+
}
|
|
418
|
+
|
|
419
|
+
.vxe-icon--upload:before {
|
|
420
|
+
top: 0.1em;
|
|
421
|
+
border-top-width: 0.1em;
|
|
422
|
+
}
|
|
423
|
+
.vxe-icon--upload:after {
|
|
424
|
+
content: "↑";
|
|
425
|
+
left: 0;
|
|
426
|
+
top: 0.15em;
|
|
427
|
+
}
|
|
428
|
+
|
|
429
|
+
.vxe-icon--download:before {
|
|
430
|
+
bottom: 0.05em;
|
|
431
|
+
border-bottom-width: 0.1em;
|
|
432
|
+
}
|
|
433
|
+
.vxe-icon--download:after {
|
|
434
|
+
content: "↑";
|
|
435
|
+
left: 0;
|
|
436
|
+
bottom: 0.15em;
|
|
437
|
+
transform: rotate(180deg);
|
|
438
|
+
}
|
|
439
|
+
|
|
440
|
+
.vxe-icon--eye:before,
|
|
441
|
+
.vxe-icon--eye-slash:before {
|
|
442
|
+
content: "●";
|
|
443
|
+
top: 0.16em;
|
|
444
|
+
left: 0;
|
|
445
|
+
width: 1em;
|
|
446
|
+
height: 0.68em;
|
|
447
|
+
line-height: 0.25em;
|
|
448
|
+
border-radius: 50%;
|
|
449
|
+
border-width: 0.1em;
|
|
450
|
+
border-style: solid;
|
|
451
|
+
border-color: inherit;
|
|
452
|
+
text-align: center;
|
|
453
|
+
}
|
|
454
|
+
|
|
455
|
+
.vxe-icon--eye-slash:after {
|
|
456
|
+
top: -0.1em;
|
|
457
|
+
left: 0.45em;
|
|
458
|
+
width: 0;
|
|
459
|
+
height: 1.2em;
|
|
460
|
+
border-width: 0;
|
|
461
|
+
border-style: solid;
|
|
462
|
+
border-color: inherit;
|
|
463
|
+
border-left-width: 0.1em;
|
|
464
|
+
transform: rotate(45deg);
|
|
465
|
+
}
|
|
466
|
+
|
|
467
|
+
.vxe-icon--calendar:before {
|
|
468
|
+
top: 0.15em;
|
|
469
|
+
left: 0;
|
|
470
|
+
width: 1em;
|
|
471
|
+
height: 0.8em;
|
|
472
|
+
border-width: 0.2em 0.1em 0.1em 0.1em;
|
|
473
|
+
border-radius: 0.1em 0.1em 0 0;
|
|
474
|
+
border-style: solid;
|
|
475
|
+
border-color: inherit;
|
|
476
|
+
}
|
|
477
|
+
.vxe-icon--calendar:after {
|
|
478
|
+
left: 0.2em;
|
|
479
|
+
top: 0;
|
|
480
|
+
width: 0.6em;
|
|
481
|
+
height: 0.3em;
|
|
482
|
+
border-width: 0 0.1em;
|
|
483
|
+
border-style: solid;
|
|
484
|
+
border-color: inherit;
|
|
485
|
+
}
|
|
486
|
+
|
|
487
|
+
.vxe-icon--dot:before {
|
|
488
|
+
top: 0.25em;
|
|
489
|
+
left: 0.25em;
|
|
490
|
+
border-radius: 50%;
|
|
491
|
+
border-width: 0.25em;
|
|
492
|
+
border-style: solid;
|
|
493
|
+
border-color: inherit;
|
|
494
|
+
}
|
|
495
|
+
|
|
496
|
+
.vxe-icon--print {
|
|
497
|
+
box-shadow: inset 0 0 0 0.1em;
|
|
498
|
+
border-width: 0.2em 0;
|
|
499
|
+
border-style: solid;
|
|
500
|
+
border-color: transparent !important;
|
|
501
|
+
border-radius: 0.3em 0.3em 0 0;
|
|
502
|
+
}
|
|
503
|
+
.vxe-icon--print:before {
|
|
504
|
+
width: 0.6em;
|
|
505
|
+
height: 0.3em;
|
|
506
|
+
top: -0.2em;
|
|
507
|
+
left: 0.2em;
|
|
508
|
+
box-shadow: inset 0 0 0 0.1em;
|
|
509
|
+
}
|
|
510
|
+
.vxe-icon--print:after {
|
|
511
|
+
width: 0.6em;
|
|
512
|
+
height: 0.6em;
|
|
513
|
+
left: 0.2em;
|
|
514
|
+
bottom: -0.2em;
|
|
515
|
+
box-shadow: inset 0 0 0 0.1em;
|
|
516
|
+
background-color: var(--vxe-ui-layout-background-color);
|
|
517
|
+
}
|
|
518
|
+
|
|
519
|
+
.vxe-icon--search:before {
|
|
520
|
+
top: 0;
|
|
521
|
+
left: 0;
|
|
522
|
+
width: 0.8em;
|
|
523
|
+
height: 0.8em;
|
|
524
|
+
border-width: 0.15em;
|
|
525
|
+
border-style: solid;
|
|
526
|
+
border-color: inherit;
|
|
527
|
+
border-radius: 50%;
|
|
528
|
+
}
|
|
529
|
+
.vxe-icon--search:after {
|
|
530
|
+
top: 0.75em;
|
|
531
|
+
left: 0.6em;
|
|
532
|
+
width: 0.35em;
|
|
533
|
+
height: 0;
|
|
534
|
+
border-width: 0.15em 0 0 0;
|
|
535
|
+
border-style: solid;
|
|
536
|
+
border-color: inherit;
|
|
537
|
+
transform: rotate(45deg);
|
|
538
|
+
}
|
|
539
|
+
|
|
540
|
+
.vxe-icon-warnion-circle-fill:before {
|
|
541
|
+
content: "\e848";
|
|
542
|
+
}
|
|
543
|
+
|
|
2
544
|
@font-face {
|
|
3
545
|
font-family: "vxetableiconfont";
|
|
4
546
|
src: url("data:application/x-font-woff2;charset=utf-8;base64,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") format("woff2");
|