vxe-gantt 0.0.1 → 0.0.3
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/LICENSE +21 -0
- package/README.en.md +72 -0
- package/README.ja-JP.md +72 -0
- package/README.md +82 -2
- package/README.zh-TW.md +73 -0
- package/es/components.js +12 -0
- package/es/gantt/index.js +13 -0
- package/es/gantt/src/emits.js +4 -0
- package/es/gantt/src/gantt-body.js +103 -0
- package/es/gantt/src/gantt-chart.js +77 -0
- package/es/gantt/src/gantt-header.js +70 -0
- package/es/gantt/src/gantt-view.js +768 -0
- package/es/gantt/src/gantt.js +1746 -0
- package/es/gantt/src/grid-emits.js +16 -0
- package/es/gantt/src/grid-props.js +7 -0
- package/es/gantt/src/props.js +2 -0
- package/es/gantt/src/table-emits.js +97 -0
- package/es/gantt/src/table-props.js +298 -0
- package/es/gantt/src/util.js +12 -0
- package/es/gantt/style.css +599 -0
- package/es/gantt/style.min.css +1 -0
- package/es/index.esm.js +3 -0
- package/es/style.css +1 -0
- package/es/style.min.css +1 -0
- package/es/ui/index.js +52 -0
- package/es/ui/src/comp.js +2 -0
- package/es/ui/src/dom.js +169 -0
- package/es/ui/src/log.js +4 -0
- package/es/ui/src/utils.js +41 -0
- package/es/ui/src/vn.js +1 -0
- package/es/ui/style.css +0 -0
- package/es/ui/style.min.css +0 -0
- package/es/vxe-gantt/index.js +3 -0
- package/es/vxe-gantt/style.css +599 -0
- package/es/vxe-gantt/style.min.css +1 -0
- package/es/vxe-ui/index.js +3 -0
- package/es/vxe-ui/style.css +0 -0
- package/es/vxe-ui/style.min.css +0 -0
- package/helper/vetur/attributes.json +1 -0
- package/helper/vetur/tags.json +1 -0
- package/lib/components.js +42 -0
- package/lib/components.min.js +1 -0
- package/lib/gantt/index.js +20 -0
- package/lib/gantt/index.min.js +1 -0
- package/lib/gantt/src/emits.js +8 -0
- package/lib/gantt/src/emits.min.js +1 -0
- package/lib/gantt/src/gantt-body.js +118 -0
- package/lib/gantt/src/gantt-body.min.js +1 -0
- package/lib/gantt/src/gantt-chart.js +94 -0
- package/lib/gantt/src/gantt-chart.min.js +1 -0
- package/lib/gantt/src/gantt-header.js +78 -0
- package/lib/gantt/src/gantt-header.min.js +1 -0
- package/lib/gantt/src/gantt-view.js +810 -0
- package/lib/gantt/src/gantt-view.min.js +1 -0
- package/lib/gantt/src/gantt.js +1997 -0
- package/lib/gantt/src/gantt.min.js +1 -0
- package/lib/gantt/src/grid-emits.js +8 -0
- package/lib/gantt/src/grid-emits.min.js +1 -0
- package/lib/gantt/src/grid-props.js +24 -0
- package/lib/gantt/src/grid-props.min.js +1 -0
- package/lib/gantt/src/props.js +13 -0
- package/lib/gantt/src/props.min.js +1 -0
- package/lib/gantt/src/table-emits.js +7 -0
- package/lib/gantt/src/table-emits.min.js +1 -0
- package/lib/gantt/src/table-props.js +306 -0
- package/lib/gantt/src/table-props.min.js +1 -0
- package/lib/gantt/src/util.js +19 -0
- package/lib/gantt/src/util.min.js +1 -0
- package/lib/gantt/style/index.js +1 -0
- package/lib/gantt/style/style.css +599 -0
- package/lib/gantt/style/style.min.css +1 -0
- package/lib/index.common.js +21 -0
- package/lib/index.umd.js +6731 -0
- package/lib/index.umd.min.js +1 -0
- package/lib/style.css +1 -0
- package/lib/style.min.css +1 -0
- package/lib/ui/index.js +69 -0
- package/lib/ui/index.min.js +1 -0
- package/lib/ui/src/comp.js +8 -0
- package/lib/ui/src/comp.min.js +1 -0
- package/lib/ui/src/dom.js +217 -0
- package/lib/ui/src/dom.min.js +1 -0
- package/lib/ui/src/log.js +10 -0
- package/lib/ui/src/log.min.js +1 -0
- package/lib/ui/src/utils.js +59 -0
- package/lib/ui/src/utils.min.js +1 -0
- package/lib/ui/src/vn.js +1 -0
- package/lib/ui/src/vn.min.js +0 -0
- package/lib/ui/style/index.js +1 -0
- package/lib/ui/style/style.css +0 -0
- package/lib/ui/style/style.min.css +0 -0
- package/lib/vxe-gantt/index.js +21 -0
- package/lib/vxe-gantt/index.min.js +1 -0
- package/lib/vxe-gantt/style/index.js +1 -0
- package/lib/vxe-gantt/style/style.css +599 -0
- package/lib/vxe-gantt/style/style.min.css +1 -0
- package/lib/vxe-ui/index.js +21 -0
- package/lib/vxe-ui/index.min.js +1 -0
- package/lib/vxe-ui/style/index.js +1 -0
- package/lib/vxe-ui/style/style.css +0 -0
- package/lib/vxe-ui/style/style.min.css +0 -0
- package/package.json +58 -21
- package/packages/components.ts +19 -0
- package/packages/gantt/index.ts +17 -0
- package/packages/gantt/src/emits.ts +7 -0
- package/packages/gantt/src/gantt-body.ts +119 -0
- package/packages/gantt/src/gantt-chart.ts +92 -0
- package/packages/gantt/src/gantt-header.ts +79 -0
- package/packages/gantt/src/gantt-view.ts +840 -0
- package/packages/gantt/src/gantt.ts +1869 -0
- package/packages/gantt/src/grid-emits.ts +19 -0
- package/packages/gantt/src/grid-props.ts +23 -0
- package/packages/gantt/src/props.ts +13 -0
- package/packages/gantt/src/table-emits.ts +109 -0
- package/packages/gantt/src/table-props.ts +304 -0
- package/packages/gantt/src/util.ts +15 -0
- package/packages/index.ts +4 -0
- package/packages/ui/index.ts +58 -0
- package/packages/ui/src/comp.ts +3 -0
- package/packages/ui/src/dom.ts +196 -0
- package/packages/ui/src/log.ts +6 -0
- package/packages/ui/src/utils.ts +50 -0
- package/packages/ui/src/vn.ts +0 -0
- package/styles/all.scss +3 -0
- package/styles/base.scss +2 -0
- package/styles/components/gantt-module/all.scss +1 -0
- package/styles/components/gantt-module/gantt-chart.scss +46 -0
- package/styles/components/gantt.scss +586 -0
- package/styles/components/ui.scss +0 -0
- package/styles/cssvar.scss +0 -0
- package/styles/helpers/baseMixin.scss +96 -0
- package/styles/helpers/baseVar.scss +4 -0
- package/styles/helpers/placement.scss +39 -0
- package/styles/theme/base.scss +7 -0
- package/styles/theme/dark.scss +7 -0
- package/styles/theme/light.scss +7 -0
- package/styles/variable.scss +0 -0
- package/types/all.d.ts +16 -0
- package/types/index.d.ts +4 -0
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.eqEmptyValue = eqEmptyValue;
|
|
7
|
+
exports.formatText = formatText;
|
|
8
|
+
exports.getFuncText = getFuncText;
|
|
9
|
+
exports.getLastZIndex = getLastZIndex;
|
|
10
|
+
exports.hasChildrenList = hasChildrenList;
|
|
11
|
+
exports.isEmptyValue = isEmptyValue;
|
|
12
|
+
exports.isEnableConf = isEnableConf;
|
|
13
|
+
exports.nextZIndex = nextZIndex;
|
|
14
|
+
exports.parseFile = parseFile;
|
|
15
|
+
var _xeUtils = _interopRequireDefault(require("xe-utils"));
|
|
16
|
+
var _core = require("@vxe-ui/core");
|
|
17
|
+
var _domZindex = _interopRequireDefault(require("dom-zindex"));
|
|
18
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
19
|
+
function isEnableConf(conf) {
|
|
20
|
+
return conf && conf.enabled !== false;
|
|
21
|
+
}
|
|
22
|
+
function isEmptyValue(cellValue) {
|
|
23
|
+
return cellValue === null || cellValue === undefined || cellValue === '';
|
|
24
|
+
}
|
|
25
|
+
function parseFile(file) {
|
|
26
|
+
const name = file.name;
|
|
27
|
+
const tIndex = _xeUtils.default.lastIndexOf(name, '.');
|
|
28
|
+
const type = name.substring(tIndex + 1, name.length).toLowerCase();
|
|
29
|
+
const filename = name.substring(0, tIndex);
|
|
30
|
+
return {
|
|
31
|
+
filename,
|
|
32
|
+
type
|
|
33
|
+
};
|
|
34
|
+
}
|
|
35
|
+
function nextZIndex() {
|
|
36
|
+
return _domZindex.default.getNext();
|
|
37
|
+
}
|
|
38
|
+
function getLastZIndex() {
|
|
39
|
+
return _domZindex.default.getCurrent();
|
|
40
|
+
}
|
|
41
|
+
function hasChildrenList(item) {
|
|
42
|
+
return item && item.children && item.children.length > 0;
|
|
43
|
+
}
|
|
44
|
+
function getFuncText(content, args) {
|
|
45
|
+
if (content) {
|
|
46
|
+
const translate = _core.VxeUI.getConfig().translate;
|
|
47
|
+
return _xeUtils.default.toValueString(translate ? translate('' + content, args) : content);
|
|
48
|
+
}
|
|
49
|
+
return '';
|
|
50
|
+
}
|
|
51
|
+
function formatText(value, placeholder) {
|
|
52
|
+
return '' + (isEmptyValue(value) ? placeholder ? _core.VxeUI.getConfig().emptyCell : '' : value);
|
|
53
|
+
}
|
|
54
|
+
/**
|
|
55
|
+
* 判断值为:'' | null | undefined 时都属于空值
|
|
56
|
+
*/
|
|
57
|
+
function eqEmptyValue(cellValue) {
|
|
58
|
+
return cellValue === '' || _xeUtils.default.eqNull(cellValue);
|
|
59
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Object.defineProperty(exports,"__esModule",{value:!0}),exports.eqEmptyValue=eqEmptyValue,exports.formatText=formatText,exports.getFuncText=getFuncText,exports.getLastZIndex=getLastZIndex,exports.hasChildrenList=hasChildrenList,exports.isEmptyValue=isEmptyValue,exports.isEnableConf=isEnableConf,exports.nextZIndex=nextZIndex,exports.parseFile=parseFile;var _xeUtils=_interopRequireDefault(require("xe-utils")),_core=require("@vxe-ui/core"),_domZindex=_interopRequireDefault(require("dom-zindex"));function _interopRequireDefault(e){return e&&e.__esModule?e:{default:e}}function isEnableConf(e){return e&&!1!==e.enabled}function isEmptyValue(e){return null==e||""===e}function parseFile(e){var e=e.name,t=_xeUtils.default.lastIndexOf(e,"."),n=e.substring(t+1,e.length).toLowerCase();return{filename:e.substring(0,t),type:n}}function nextZIndex(){return _domZindex.default.getNext()}function getLastZIndex(){return _domZindex.default.getCurrent()}function hasChildrenList(e){return e&&e.children&&0<e.children.length}function getFuncText(e,t){var n;return e?(n=_core.VxeUI.getConfig().translate,_xeUtils.default.toValueString(n?n(""+e,t):e)):""}function formatText(e,t){return""+(isEmptyValue(e)?t?_core.VxeUI.getConfig().emptyCell:"":e)}function eqEmptyValue(e){return""===e||_xeUtils.default.eqNull(e)}
|
package/lib/ui/src/vn.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
require('./style.css')
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
var _exportNames = {};
|
|
7
|
+
exports.default = void 0;
|
|
8
|
+
var _gantt = _interopRequireWildcard(require("../gantt"));
|
|
9
|
+
Object.keys(_gantt).forEach(function (key) {
|
|
10
|
+
if (key === "default" || key === "__esModule") return;
|
|
11
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
12
|
+
if (key in exports && exports[key] === _gantt[key]) return;
|
|
13
|
+
Object.defineProperty(exports, key, {
|
|
14
|
+
enumerable: true,
|
|
15
|
+
get: function () {
|
|
16
|
+
return _gantt[key];
|
|
17
|
+
}
|
|
18
|
+
});
|
|
19
|
+
});
|
|
20
|
+
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); }
|
|
21
|
+
var _default = exports.default = _gantt.default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Object.defineProperty(exports,"__esModule",{value:!0});var _exportNames={},_gantt=(exports.default=void 0,_interopRequireWildcard(require("../gantt")));function _interopRequireWildcard(e,t){var a,u;return"function"==typeof WeakMap&&(a=new WeakMap,u=new WeakMap),(_interopRequireWildcard=function(t,e){if(!e&&t&&t.__esModule)return t;var r,n,o={__proto__:null,default:t};if(null!==t&&("object"==typeof t||"function"==typeof t)){if(r=e?u:a){if(r.has(t))return r.get(t);r.set(t,o)}for(let e in t)"default"!==e&&{}.hasOwnProperty.call(t,e)&&((n=(r=Object.defineProperty)&&Object.getOwnPropertyDescriptor(t,e))&&(n.get||n.set)?r(o,e,n):o[e]=t[e])}return o})(e,t)}Object.keys(_gantt).forEach(function(e){"default"===e||"__esModule"===e||Object.prototype.hasOwnProperty.call(_exportNames,e)||e in exports&&exports[e]===_gantt[e]||Object.defineProperty(exports,e,{enumerable:!0,get:function(){return _gantt[e]}})});var _default=exports.default=_gantt.default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
require('./style.css')
|
|
@@ -0,0 +1,599 @@
|
|
|
1
|
+
@charset "UTF-8";
|
|
2
|
+
.vxe-gantt-view--chart-wrapper {
|
|
3
|
+
position: absolute;
|
|
4
|
+
top: 0;
|
|
5
|
+
left: 0;
|
|
6
|
+
pointer-events: none;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.vxe-gantt-view--chart-row {
|
|
10
|
+
position: relative;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.vxe-gantt-view--chart-bar {
|
|
14
|
+
display: flex;
|
|
15
|
+
flex-direction: row;
|
|
16
|
+
position: absolute;
|
|
17
|
+
width: 100px;
|
|
18
|
+
top: 50%;
|
|
19
|
+
left: 0;
|
|
20
|
+
color: #ffffff;
|
|
21
|
+
transform: translateY(-50%);
|
|
22
|
+
border-radius: var(--vxe-ui-base-border-radius);
|
|
23
|
+
height: var(--vxe-ui-gantt-view-chart-bar-height);
|
|
24
|
+
background-color: var(--vxe-ui-font-primary-lighten-color);
|
|
25
|
+
pointer-events: all;
|
|
26
|
+
}
|
|
27
|
+
.vxe-gantt-view--chart-bar:hover::after {
|
|
28
|
+
content: "";
|
|
29
|
+
position: absolute;
|
|
30
|
+
top: 0;
|
|
31
|
+
left: 0;
|
|
32
|
+
width: 100%;
|
|
33
|
+
height: 100%;
|
|
34
|
+
background-color: rgba(0, 0, 0, 0.1);
|
|
35
|
+
border-radius: var(--vxe-ui-base-border-radius);
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.vxe-gantt-view--chart-progress {
|
|
39
|
+
flex-shrink: 0;
|
|
40
|
+
width: 40px;
|
|
41
|
+
text-align: left;
|
|
42
|
+
border-radius: var(--vxe-ui-base-border-radius) 0 0 var(--vxe-ui-base-border-radius);
|
|
43
|
+
background-color: var(--vxe-ui-font-primary-color);
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.vxe-gantt-view--chart-content {
|
|
47
|
+
flex-grow: 1;
|
|
48
|
+
text-align: right;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.vxe-gantt {
|
|
52
|
+
position: relative;
|
|
53
|
+
overflow: auto;
|
|
54
|
+
display: flex;
|
|
55
|
+
flex-direction: column;
|
|
56
|
+
}
|
|
57
|
+
.vxe-gantt.is--loading:before {
|
|
58
|
+
content: "";
|
|
59
|
+
position: absolute;
|
|
60
|
+
top: 0;
|
|
61
|
+
left: 0;
|
|
62
|
+
width: 100%;
|
|
63
|
+
height: 100%;
|
|
64
|
+
z-index: 99;
|
|
65
|
+
-webkit-user-select: none;
|
|
66
|
+
-moz-user-select: none;
|
|
67
|
+
user-select: none;
|
|
68
|
+
background-color: var(--vxe-ui-loading-background-color);
|
|
69
|
+
}
|
|
70
|
+
.vxe-gantt.is--loading > .vxe-gantt-view .vxe-loading {
|
|
71
|
+
background-color: transparent;
|
|
72
|
+
}
|
|
73
|
+
.vxe-gantt.is--maximize {
|
|
74
|
+
position: fixed;
|
|
75
|
+
top: 0;
|
|
76
|
+
left: 0;
|
|
77
|
+
width: 100%;
|
|
78
|
+
height: 100%;
|
|
79
|
+
padding: 0.5em 1em;
|
|
80
|
+
background-color: var(--vxe-ui-layout-background-color);
|
|
81
|
+
}
|
|
82
|
+
.vxe-gantt.is--split-drag {
|
|
83
|
+
cursor: col-resize;
|
|
84
|
+
}
|
|
85
|
+
.vxe-gantt.is--split-drag .vxe-gantt--table-wrapper::after,
|
|
86
|
+
.vxe-gantt.is--split-drag .vxe-gantt--view-wrapper::after {
|
|
87
|
+
content: "";
|
|
88
|
+
position: absolute;
|
|
89
|
+
top: 0;
|
|
90
|
+
left: 0;
|
|
91
|
+
width: 100%;
|
|
92
|
+
height: 100%;
|
|
93
|
+
z-index: 1;
|
|
94
|
+
background: transparent;
|
|
95
|
+
-webkit-user-select: none;
|
|
96
|
+
-moz-user-select: none;
|
|
97
|
+
user-select: none;
|
|
98
|
+
}
|
|
99
|
+
.vxe-gantt .vxe-gantt--form-wrapper,
|
|
100
|
+
.vxe-gantt .vxe-gantt--top-wrapper,
|
|
101
|
+
.vxe-gantt .vxe-gantt--bottom-wrapper {
|
|
102
|
+
position: relative;
|
|
103
|
+
}
|
|
104
|
+
.vxe-gantt .vxe-gantt--gantt-container {
|
|
105
|
+
position: relative;
|
|
106
|
+
display: flex;
|
|
107
|
+
flex-direction: row;
|
|
108
|
+
}
|
|
109
|
+
.vxe-gantt .vxe-gantt--left-wrapper,
|
|
110
|
+
.vxe-gantt .vxe-gantt--right-wrapper {
|
|
111
|
+
flex-shrink: 0;
|
|
112
|
+
overflow: auto;
|
|
113
|
+
outline: 0;
|
|
114
|
+
}
|
|
115
|
+
.vxe-gantt .vxe-gantt--table-wrapper,
|
|
116
|
+
.vxe-gantt .vxe-gantt--view-wrapper {
|
|
117
|
+
display: none;
|
|
118
|
+
position: relative;
|
|
119
|
+
flex-grow: 1;
|
|
120
|
+
overflow: hidden;
|
|
121
|
+
}
|
|
122
|
+
.vxe-gantt .vxe-gantt--view-split-bar {
|
|
123
|
+
flex-shrink: 0;
|
|
124
|
+
cursor: col-resize;
|
|
125
|
+
width: var(--vxe-ui-gantt-view-split-bar-width);
|
|
126
|
+
background-color: var(--vxe-ui-gantt-view-split-bar-background-color);
|
|
127
|
+
}
|
|
128
|
+
.vxe-gantt.show--left .vxe-gantt--table-wrapper {
|
|
129
|
+
display: block;
|
|
130
|
+
}
|
|
131
|
+
.vxe-gantt.show--left.show--right .vxe-gantt--table-wrapper {
|
|
132
|
+
flex-grow: unset;
|
|
133
|
+
flex-shrink: 0;
|
|
134
|
+
width: 30%;
|
|
135
|
+
}
|
|
136
|
+
.vxe-gantt.show--right .vxe-gantt--view-wrapper {
|
|
137
|
+
display: block;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
.vxe-gantt--layout-body-wrapper {
|
|
141
|
+
display: flex;
|
|
142
|
+
flex-direction: row;
|
|
143
|
+
overflow: auto;
|
|
144
|
+
flex-grow: 1;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
.vxe-gantt--layout-body-content-wrapper {
|
|
148
|
+
flex-grow: 1;
|
|
149
|
+
overflow: hidden;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
.vxe-gantt--layout-header-wrapper,
|
|
153
|
+
.vxe-gantt--layout-footer-wrapper,
|
|
154
|
+
.vxe-gantt--layout-aside-left-wrapper,
|
|
155
|
+
.vxe-gantt--layout-aside-left-wrapper {
|
|
156
|
+
flex-shrink: 0;
|
|
157
|
+
overflow: auto;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
/*边框线*/
|
|
161
|
+
.vxe-gantt--border-line {
|
|
162
|
+
position: absolute;
|
|
163
|
+
top: 0;
|
|
164
|
+
left: 0;
|
|
165
|
+
width: 100%;
|
|
166
|
+
height: 100%;
|
|
167
|
+
z-index: 10;
|
|
168
|
+
pointer-events: none;
|
|
169
|
+
border: var(--vxe-ui-table-border-width) solid var(--vxe-ui-table-border-color);
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
.vxe-gantt.border--default .vxe-gantt-view--header-wrapper, .vxe-gantt.border--full .vxe-gantt-view--header-wrapper, .vxe-gantt.border--outer .vxe-gantt-view--header-wrapper {
|
|
173
|
+
background-color: var(--vxe-ui-table-header-background-color);
|
|
174
|
+
}
|
|
175
|
+
.vxe-gantt.border--full .vxe-gantt-view--header-column,
|
|
176
|
+
.vxe-gantt.border--full .vxe-gantt-view--body-column,
|
|
177
|
+
.vxe-gantt.border--full .vxe-gantt-view--footer-column {
|
|
178
|
+
background-image: linear-gradient(var(--vxe-ui-table-border-color), var(--vxe-ui-table-border-color)), linear-gradient(var(--vxe-ui-table-border-color), var(--vxe-ui-table-border-color));
|
|
179
|
+
background-repeat: no-repeat;
|
|
180
|
+
background-size: var(--vxe-ui-table-border-width) 100%, 100% var(--vxe-ui-table-border-width);
|
|
181
|
+
background-position: right top, right bottom;
|
|
182
|
+
}
|
|
183
|
+
.vxe-gantt.border--default .vxe-gantt-view--scroll-y-top-corner::before,
|
|
184
|
+
.vxe-gantt.border--default .vxe-gantt-view--scroll-y-bottom-corner::before, .vxe-gantt.border--full .vxe-gantt-view--scroll-y-top-corner::before,
|
|
185
|
+
.vxe-gantt.border--full .vxe-gantt-view--scroll-y-bottom-corner::before, .vxe-gantt.border--outer .vxe-gantt-view--scroll-y-top-corner::before,
|
|
186
|
+
.vxe-gantt.border--outer .vxe-gantt-view--scroll-y-bottom-corner::before, .vxe-gantt.border--inner .vxe-gantt-view--scroll-y-top-corner::before,
|
|
187
|
+
.vxe-gantt.border--inner .vxe-gantt-view--scroll-y-bottom-corner::before {
|
|
188
|
+
content: "";
|
|
189
|
+
position: absolute;
|
|
190
|
+
top: 0;
|
|
191
|
+
left: 0;
|
|
192
|
+
width: 100%;
|
|
193
|
+
height: 100%;
|
|
194
|
+
z-index: 1;
|
|
195
|
+
border-width: 0;
|
|
196
|
+
border-style: solid;
|
|
197
|
+
border-color: var(--vxe-ui-table-border-color);
|
|
198
|
+
}
|
|
199
|
+
.vxe-gantt.border--default .vxe-gantt-view--scroll-y-top-corner::before, .vxe-gantt.border--full .vxe-gantt-view--scroll-y-top-corner::before, .vxe-gantt.border--outer .vxe-gantt-view--scroll-y-top-corner::before, .vxe-gantt.border--inner .vxe-gantt-view--scroll-y-top-corner::before {
|
|
200
|
+
border-bottom-width: var(--vxe-ui-table-border-width);
|
|
201
|
+
}
|
|
202
|
+
.vxe-gantt.border--default .vxe-gantt-view--scroll-y-bottom-corner, .vxe-gantt.border--full .vxe-gantt-view--scroll-y-bottom-corner, .vxe-gantt.border--outer .vxe-gantt-view--scroll-y-bottom-corner, .vxe-gantt.border--inner .vxe-gantt-view--scroll-y-bottom-corner {
|
|
203
|
+
border-top: var(--vxe-ui-table-border-width) solid var(--vxe-ui-table-border-color);
|
|
204
|
+
}
|
|
205
|
+
.vxe-gantt.border--default .vxe-gantt-view--scroll-x-wrapper::after, .vxe-gantt.border--full .vxe-gantt-view--scroll-x-wrapper::after, .vxe-gantt.border--outer .vxe-gantt-view--scroll-x-wrapper::after, .vxe-gantt.border--inner .vxe-gantt-view--scroll-x-wrapper::after {
|
|
206
|
+
content: "";
|
|
207
|
+
position: absolute;
|
|
208
|
+
left: 0;
|
|
209
|
+
width: 100%;
|
|
210
|
+
height: 100%;
|
|
211
|
+
z-index: 1;
|
|
212
|
+
pointer-events: none;
|
|
213
|
+
}
|
|
214
|
+
.vxe-gantt.border--default.sx-pos--top .vxe-gantt-view--scroll-x-wrapper::after, .vxe-gantt.border--full.sx-pos--top .vxe-gantt-view--scroll-x-wrapper::after, .vxe-gantt.border--outer.sx-pos--top .vxe-gantt-view--scroll-x-wrapper::after, .vxe-gantt.border--inner.sx-pos--top .vxe-gantt-view--scroll-x-wrapper::after {
|
|
215
|
+
top: 0;
|
|
216
|
+
border-bottom: var(--vxe-ui-table-border-width) solid var(--vxe-ui-table-border-color);
|
|
217
|
+
}
|
|
218
|
+
.vxe-gantt.border--default.sx-pos--bottom .vxe-gantt-view--scroll-x-wrapper::after, .vxe-gantt.border--full.sx-pos--bottom .vxe-gantt-view--scroll-x-wrapper::after, .vxe-gantt.border--outer.sx-pos--bottom .vxe-gantt-view--scroll-x-wrapper::after, .vxe-gantt.border--inner.sx-pos--bottom .vxe-gantt-view--scroll-x-wrapper::after {
|
|
219
|
+
bottom: 0;
|
|
220
|
+
height: calc(100% + var(--vxe-ui-table-border-width));
|
|
221
|
+
border-top: var(--vxe-ui-table-border-width) solid var(--vxe-ui-table-border-color);
|
|
222
|
+
}
|
|
223
|
+
.vxe-gantt.border--default .vxe-gantt-view--scroll-y-top-corner::before, .vxe-gantt.border--full .vxe-gantt-view--scroll-y-top-corner::before {
|
|
224
|
+
border-left-width: var(--vxe-ui-table-border-width);
|
|
225
|
+
border-right-width: var(--vxe-ui-table-border-width);
|
|
226
|
+
}
|
|
227
|
+
.vxe-gantt.border--default .vxe-gantt-view--scroll-y-bottom-corner::before, .vxe-gantt.border--full .vxe-gantt-view--scroll-y-bottom-corner::before {
|
|
228
|
+
border-left-width: var(--vxe-ui-table-border-width);
|
|
229
|
+
border-right-width: var(--vxe-ui-table-border-width);
|
|
230
|
+
}
|
|
231
|
+
.vxe-gantt.border--default.sy-pos--right .vxe-gantt-view--scroll-y-top-corner::before,
|
|
232
|
+
.vxe-gantt.border--default.sy-pos--right .vxe-gantt-view--scroll-y-bottom-corner::before, .vxe-gantt.border--full.sy-pos--right .vxe-gantt-view--scroll-y-top-corner::before,
|
|
233
|
+
.vxe-gantt.border--full.sy-pos--right .vxe-gantt-view--scroll-y-bottom-corner::before {
|
|
234
|
+
width: calc(100% + 1px);
|
|
235
|
+
left: -1px;
|
|
236
|
+
}
|
|
237
|
+
.vxe-gantt.border--default .vxe-gantt-view--scroll-y-wrapper::after, .vxe-gantt.border--full .vxe-gantt-view--scroll-y-wrapper::after {
|
|
238
|
+
content: "";
|
|
239
|
+
position: absolute;
|
|
240
|
+
top: 0;
|
|
241
|
+
width: 100%;
|
|
242
|
+
height: 100%;
|
|
243
|
+
z-index: 1;
|
|
244
|
+
pointer-events: none;
|
|
245
|
+
}
|
|
246
|
+
.vxe-gantt.border--default.sy-pos--left .vxe-gantt-view--scroll-y-wrapper::after, .vxe-gantt.border--full.sy-pos--left .vxe-gantt-view--scroll-y-wrapper::after {
|
|
247
|
+
left: 0;
|
|
248
|
+
border-right: var(--vxe-ui-table-border-width) solid var(--vxe-ui-table-border-color);
|
|
249
|
+
}
|
|
250
|
+
.vxe-gantt.border--default.sy-pos--right .vxe-gantt-view--scroll-y-wrapper::after, .vxe-gantt.border--full.sy-pos--right .vxe-gantt-view--scroll-y-wrapper::after {
|
|
251
|
+
right: 0;
|
|
252
|
+
width: calc(100% + var(--vxe-ui-table-border-width));
|
|
253
|
+
border-left: var(--vxe-ui-table-border-width) solid var(--vxe-ui-table-border-color);
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
/*分割条*/
|
|
257
|
+
.vxe-gantt--view-split-bar {
|
|
258
|
+
position: relative;
|
|
259
|
+
-webkit-user-select: none;
|
|
260
|
+
-moz-user-select: none;
|
|
261
|
+
user-select: none;
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
.vxe-gantt--view-split-bar-handle {
|
|
265
|
+
position: absolute;
|
|
266
|
+
top: 0;
|
|
267
|
+
left: 0;
|
|
268
|
+
width: 100%;
|
|
269
|
+
height: 100%;
|
|
270
|
+
z-index: 13;
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
.vxe-gantt--view-split-bar-btn-wrapper {
|
|
274
|
+
display: flex;
|
|
275
|
+
flex-direction: column;
|
|
276
|
+
align-items: center;
|
|
277
|
+
position: absolute;
|
|
278
|
+
left: 50%;
|
|
279
|
+
top: 50%;
|
|
280
|
+
transform: translate(-50%, -50%);
|
|
281
|
+
z-index: 15;
|
|
282
|
+
pointer-events: none;
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
.vxe-gantt--view-split-bar-left-btn,
|
|
286
|
+
.vxe-gantt--view-split-bar-right-btn {
|
|
287
|
+
display: flex;
|
|
288
|
+
flex-direction: row;
|
|
289
|
+
align-items: center;
|
|
290
|
+
justify-content: center;
|
|
291
|
+
font-size: 0.5em;
|
|
292
|
+
height: var(--vxe-ui-gantt-view-split-bar-height);
|
|
293
|
+
width: var(--vxe-ui-gantt-view-split-bar-width);
|
|
294
|
+
color: var(--vxe-ui-layout-background-color);
|
|
295
|
+
border-radius: var(--vxe-ui-base-border-radius);
|
|
296
|
+
background-color: var(--vxe-ui-gantt-view-handle-background-color);
|
|
297
|
+
border: 1px solid var(--vxe-ui-input-border-color);
|
|
298
|
+
pointer-events: all;
|
|
299
|
+
cursor: pointer;
|
|
300
|
+
-webkit-user-select: none;
|
|
301
|
+
-moz-user-select: none;
|
|
302
|
+
user-select: none;
|
|
303
|
+
transition: all 0.1s ease-in-out;
|
|
304
|
+
}
|
|
305
|
+
.vxe-gantt--view-split-bar-left-btn:hover,
|
|
306
|
+
.vxe-gantt--view-split-bar-right-btn:hover {
|
|
307
|
+
background-color: var(--vxe-ui-font-primary-lighten-color);
|
|
308
|
+
}
|
|
309
|
+
.vxe-gantt--view-split-bar-left-btn:active,
|
|
310
|
+
.vxe-gantt--view-split-bar-right-btn:active {
|
|
311
|
+
transform: scale(0.9);
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
.vxe-gantt--view-split-bar-right-btn {
|
|
315
|
+
margin-top: 1em;
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
.vxe-gantt--resizable-split-tip {
|
|
319
|
+
display: none;
|
|
320
|
+
position: absolute;
|
|
321
|
+
top: 0;
|
|
322
|
+
left: 0;
|
|
323
|
+
width: 1px;
|
|
324
|
+
height: 100%;
|
|
325
|
+
z-index: 18;
|
|
326
|
+
pointer-events: none;
|
|
327
|
+
-webkit-user-select: none;
|
|
328
|
+
-moz-user-select: none;
|
|
329
|
+
user-select: none;
|
|
330
|
+
cursor: col-resize;
|
|
331
|
+
}
|
|
332
|
+
.vxe-gantt--resizable-split-tip:before {
|
|
333
|
+
content: "";
|
|
334
|
+
display: block;
|
|
335
|
+
height: 100%;
|
|
336
|
+
background-color: var(--vxe-ui-table-resizable-drag-line-color);
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
.vxe-gantt--resizable-split-tip-number {
|
|
340
|
+
position: absolute;
|
|
341
|
+
top: 0;
|
|
342
|
+
left: 0;
|
|
343
|
+
-webkit-user-select: none;
|
|
344
|
+
-moz-user-select: none;
|
|
345
|
+
user-select: none;
|
|
346
|
+
pointer-events: none;
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
.vxe-gantt--resizable-split-number-left,
|
|
350
|
+
.vxe-gantt--resizable-split-number-right {
|
|
351
|
+
position: absolute;
|
|
352
|
+
padding: 0.25em 0.25em;
|
|
353
|
+
font-size: 12px;
|
|
354
|
+
border-radius: var(--vxe-ui-border-radius);
|
|
355
|
+
white-space: nowrap;
|
|
356
|
+
color: #ffffff;
|
|
357
|
+
background-color: var(--vxe-ui-table-resizable-drag-line-color);
|
|
358
|
+
}
|
|
359
|
+
|
|
360
|
+
.vxe-gantt--resizable-split-number-left {
|
|
361
|
+
right: 0;
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
.vxe-gantt--resizable-split-number-right {
|
|
365
|
+
left: 1px;
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
/*滚动条*/
|
|
369
|
+
.vxe-gantt.is--loading > .vxe-gantt-view--scroll-x-virtual {
|
|
370
|
+
visibility: hidden;
|
|
371
|
+
}
|
|
372
|
+
.vxe-gantt.is--loading > .vxe-gantt-view--layout-wrapper > .vxe-gantt-view--scroll-y-virtual {
|
|
373
|
+
visibility: hidden;
|
|
374
|
+
}
|
|
375
|
+
.vxe-gantt .vxe-gantt-view--scroll-x-virtual {
|
|
376
|
+
height: 0;
|
|
377
|
+
}
|
|
378
|
+
.vxe-gantt .vxe-gantt-view--scroll-y-virtual {
|
|
379
|
+
width: 0;
|
|
380
|
+
}
|
|
381
|
+
.vxe-gantt .vxe-gantt-view--scroll-x-virtual,
|
|
382
|
+
.vxe-gantt .vxe-gantt-view--scroll-y-virtual {
|
|
383
|
+
visibility: hidden;
|
|
384
|
+
position: relative;
|
|
385
|
+
flex-shrink: 0;
|
|
386
|
+
z-index: 7;
|
|
387
|
+
}
|
|
388
|
+
.vxe-gantt .vxe-gantt-view--scroll-x-handle,
|
|
389
|
+
.vxe-gantt .vxe-gantt-view--scroll-y-handle,
|
|
390
|
+
.vxe-gantt .vxe-gantt-view--scroll-x-wrapper,
|
|
391
|
+
.vxe-gantt .vxe-gantt-view--scroll-y-wrapper,
|
|
392
|
+
.vxe-gantt .vxe-gantt-view--scroll-y-top-corner,
|
|
393
|
+
.vxe-gantt .vxe-gantt-view--scroll-y-bottom-corner,
|
|
394
|
+
.vxe-gantt .vxe-gantt-view--scroll-x-left-corner,
|
|
395
|
+
.vxe-gantt .vxe-gantt-view--scroll-x-right-corner {
|
|
396
|
+
position: absolute;
|
|
397
|
+
}
|
|
398
|
+
.vxe-gantt .vxe-gantt-view--scroll-x-handle,
|
|
399
|
+
.vxe-gantt .vxe-gantt-view--scroll-x-wrapper {
|
|
400
|
+
width: 100%;
|
|
401
|
+
left: 0;
|
|
402
|
+
bottom: 0;
|
|
403
|
+
}
|
|
404
|
+
.vxe-gantt .vxe-gantt-view--scroll-x-handle {
|
|
405
|
+
overflow-y: hidden;
|
|
406
|
+
overflow-x: scroll;
|
|
407
|
+
height: 18px;
|
|
408
|
+
}
|
|
409
|
+
.vxe-gantt .vxe-gantt-view--scroll-x-wrapper {
|
|
410
|
+
height: 100%;
|
|
411
|
+
}
|
|
412
|
+
.vxe-gantt .vxe-gantt-view--scroll-y-handle,
|
|
413
|
+
.vxe-gantt .vxe-gantt-view--scroll-y-wrapper {
|
|
414
|
+
width: 100%;
|
|
415
|
+
height: 100%;
|
|
416
|
+
right: 0;
|
|
417
|
+
top: 0;
|
|
418
|
+
}
|
|
419
|
+
.vxe-gantt .vxe-gantt-view--scroll-y-handle {
|
|
420
|
+
overflow-y: scroll;
|
|
421
|
+
overflow-x: hidden;
|
|
422
|
+
width: 18px;
|
|
423
|
+
height: 100%;
|
|
424
|
+
}
|
|
425
|
+
.vxe-gantt .vxe-gantt-view--scroll-x-space {
|
|
426
|
+
height: 1px;
|
|
427
|
+
}
|
|
428
|
+
.vxe-gantt .vxe-gantt-view--scroll-y-space {
|
|
429
|
+
width: 1px;
|
|
430
|
+
}
|
|
431
|
+
.vxe-gantt .vxe-gantt-view--scroll-x-left-corner,
|
|
432
|
+
.vxe-gantt .vxe-gantt-view--scroll-x-right-corner,
|
|
433
|
+
.vxe-gantt .vxe-gantt-view--scroll-y-top-corner,
|
|
434
|
+
.vxe-gantt .vxe-gantt-view--scroll-y-bottom-corner {
|
|
435
|
+
display: none;
|
|
436
|
+
position: absolute;
|
|
437
|
+
}
|
|
438
|
+
.vxe-gantt .vxe-gantt-view--scroll-x-left-corner,
|
|
439
|
+
.vxe-gantt .vxe-gantt-view--scroll-x-right-corner {
|
|
440
|
+
bottom: 0;
|
|
441
|
+
width: 0;
|
|
442
|
+
height: 100%;
|
|
443
|
+
}
|
|
444
|
+
.vxe-gantt .vxe-gantt-view--scroll-x-left-corner::before,
|
|
445
|
+
.vxe-gantt .vxe-gantt-view--scroll-x-right-corner::before {
|
|
446
|
+
content: "";
|
|
447
|
+
position: absolute;
|
|
448
|
+
top: 0;
|
|
449
|
+
left: 0;
|
|
450
|
+
width: 100%;
|
|
451
|
+
height: 100%;
|
|
452
|
+
z-index: 1;
|
|
453
|
+
border-width: var(--vxe-ui-table-border-width);
|
|
454
|
+
border-style: solid;
|
|
455
|
+
border-color: var(--vxe-ui-table-border-color);
|
|
456
|
+
}
|
|
457
|
+
.vxe-gantt .vxe-gantt-view--scroll-x-left-corner {
|
|
458
|
+
left: 0;
|
|
459
|
+
}
|
|
460
|
+
.vxe-gantt .vxe-gantt-view--scroll-x-right-corner {
|
|
461
|
+
right: 0;
|
|
462
|
+
}
|
|
463
|
+
.vxe-gantt.sy-pos--right .vxe-gantt-view--scroll-x-right-corner {
|
|
464
|
+
right: 1px;
|
|
465
|
+
}
|
|
466
|
+
.vxe-gantt.sy-pos--right .vxe-gantt-view--scroll-x-right-corner::before {
|
|
467
|
+
border-right: 0;
|
|
468
|
+
}
|
|
469
|
+
.vxe-gantt.sx-pos--bottom .vxe-gantt-view--scroll-x-right-corner {
|
|
470
|
+
bottom: 1px;
|
|
471
|
+
}
|
|
472
|
+
.vxe-gantt.sx-pos--bottom .vxe-gantt-view--scroll-x-right-corner::before {
|
|
473
|
+
border-bottom: 0;
|
|
474
|
+
}
|
|
475
|
+
.vxe-gantt .vxe-gantt-view--scroll-y-top-corner {
|
|
476
|
+
background-color: var(--vxe-ui-table-header-background-color);
|
|
477
|
+
}
|
|
478
|
+
.vxe-gantt .vxe-gantt-view--scroll-y-top-corner,
|
|
479
|
+
.vxe-gantt .vxe-gantt-view--scroll-y-bottom-corner {
|
|
480
|
+
top: 0;
|
|
481
|
+
right: 0;
|
|
482
|
+
width: 100%;
|
|
483
|
+
height: 0;
|
|
484
|
+
}
|
|
485
|
+
.vxe-gantt .vxe-gantt-view--scroll-y-bottom-corner {
|
|
486
|
+
margin-top: -1px;
|
|
487
|
+
}
|
|
488
|
+
|
|
489
|
+
.vxe-gantt-view--layout-wrapper {
|
|
490
|
+
display: flex;
|
|
491
|
+
flex-direction: row;
|
|
492
|
+
background-color: var(--vxe-ui-layout-background-color);
|
|
493
|
+
}
|
|
494
|
+
|
|
495
|
+
.vxe-gantt-view--viewport-wrapper {
|
|
496
|
+
position: relative;
|
|
497
|
+
overflow: hidden;
|
|
498
|
+
flex-grow: 1;
|
|
499
|
+
}
|
|
500
|
+
|
|
501
|
+
.vxe-gantt-view--render-vars {
|
|
502
|
+
width: 0;
|
|
503
|
+
height: 0;
|
|
504
|
+
overflow: hidden;
|
|
505
|
+
}
|
|
506
|
+
|
|
507
|
+
.vxe-gantt-view--column-info {
|
|
508
|
+
width: var(--vxe-ui-gantt-view-column-width);
|
|
509
|
+
}
|
|
510
|
+
|
|
511
|
+
.vxe-gantt-view {
|
|
512
|
+
flex-grow: 1;
|
|
513
|
+
overflow: hidden;
|
|
514
|
+
}
|
|
515
|
+
.vxe-gantt-view .vxe-body--x-space {
|
|
516
|
+
width: 100%;
|
|
517
|
+
height: 1px;
|
|
518
|
+
margin-bottom: -1px;
|
|
519
|
+
}
|
|
520
|
+
.vxe-gantt-view .vxe-body--y-space {
|
|
521
|
+
width: 0;
|
|
522
|
+
float: left;
|
|
523
|
+
}
|
|
524
|
+
|
|
525
|
+
.vxe-gantt-view--header-table {
|
|
526
|
+
height: 100%;
|
|
527
|
+
}
|
|
528
|
+
|
|
529
|
+
.vxe-gantt-view--header-table,
|
|
530
|
+
.vxe-gantt-view--body-table {
|
|
531
|
+
border: 0;
|
|
532
|
+
border-spacing: 0;
|
|
533
|
+
border-collapse: separate;
|
|
534
|
+
table-layout: fixed;
|
|
535
|
+
}
|
|
536
|
+
.vxe-gantt-view--header-table col,
|
|
537
|
+
.vxe-gantt-view--body-table col {
|
|
538
|
+
width: var(--vxe-ui-gantt-view-column-width);
|
|
539
|
+
}
|
|
540
|
+
|
|
541
|
+
.vxe-gantt-view--header-wrapper,
|
|
542
|
+
.vxe-gantt-view--body-wrapper {
|
|
543
|
+
overflow: hidden;
|
|
544
|
+
}
|
|
545
|
+
|
|
546
|
+
.vxe-gantt-view--header-inner-wrapper {
|
|
547
|
+
overflow-y: hidden;
|
|
548
|
+
overflow-x: scroll;
|
|
549
|
+
}
|
|
550
|
+
|
|
551
|
+
.vxe-gantt-view--body-inner-wrapper {
|
|
552
|
+
overflow-y: auto;
|
|
553
|
+
overflow-x: auto;
|
|
554
|
+
}
|
|
555
|
+
|
|
556
|
+
.vxe-gantt-view--header-inner-wrapper,
|
|
557
|
+
.vxe-gantt-view--body-inner-wrapper {
|
|
558
|
+
position: relative;
|
|
559
|
+
width: 100%;
|
|
560
|
+
height: 100%;
|
|
561
|
+
scrollbar-width: none;
|
|
562
|
+
-ms-overflow-style: none;
|
|
563
|
+
-webkit-overflow-scrolling: touch;
|
|
564
|
+
}
|
|
565
|
+
|
|
566
|
+
.vxe-gantt-view--header-column {
|
|
567
|
+
text-align: center;
|
|
568
|
+
font-size: 1em;
|
|
569
|
+
}
|
|
570
|
+
|
|
571
|
+
.vxe-gantt-view--body-column {
|
|
572
|
+
height: 48px;
|
|
573
|
+
}
|
|
574
|
+
|
|
575
|
+
.vxe-gantt-view--header-column,
|
|
576
|
+
.vxe-gantt-view--body-column,
|
|
577
|
+
.vxe-gantt-view--footer-column {
|
|
578
|
+
position: relative;
|
|
579
|
+
overflow: hidden;
|
|
580
|
+
text-overflow: ellipsis;
|
|
581
|
+
white-space: nowrap;
|
|
582
|
+
}
|
|
583
|
+
|
|
584
|
+
.vxe-gantt-view.mode--day .vxe-gantt-view--header-column {
|
|
585
|
+
height: 50%;
|
|
586
|
+
}
|
|
587
|
+
|
|
588
|
+
.vxe-gantt {
|
|
589
|
+
font-size: var(--vxe-ui-font-size-default);
|
|
590
|
+
}
|
|
591
|
+
.vxe-gantt.size--medium {
|
|
592
|
+
font-size: var(--vxe-ui-font-size-medium);
|
|
593
|
+
}
|
|
594
|
+
.vxe-gantt.size--small {
|
|
595
|
+
font-size: var(--vxe-ui-font-size-small);
|
|
596
|
+
}
|
|
597
|
+
.vxe-gantt.size--mini {
|
|
598
|
+
font-size: var(--vxe-ui-font-size-mini);
|
|
599
|
+
}
|