vxe-gantt 3.0.5 → 3.0.7
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/es/gantt/src/gantt-chart.js +18 -4
- package/es/gantt/src/gantt-header.js +19 -10
- package/es/gantt/src/gantt-view.js +265 -154
- package/es/gantt/src/gantt.js +10 -10
- package/es/gantt/style.css +7 -1
- package/es/gantt/style.min.css +1 -1
- package/es/style.css +1 -1
- package/es/style.min.css +1 -1
- package/es/ui/index.js +1 -1
- package/es/ui/src/log.js +1 -1
- package/es/vxe-gantt/style.css +7 -1
- package/es/vxe-gantt/style.min.css +1 -1
- package/lib/gantt/src/gantt-chart.js +22 -5
- package/lib/gantt/src/gantt-chart.min.js +1 -1
- package/lib/gantt/src/gantt-header.js +24 -15
- package/lib/gantt/src/gantt-header.min.js +1 -1
- package/lib/gantt/src/gantt-view.js +285 -158
- package/lib/gantt/src/gantt-view.min.js +1 -1
- package/lib/gantt/src/gantt.js +9 -9
- package/lib/gantt/src/gantt.min.js +1 -1
- package/lib/gantt/style/style.css +7 -1
- package/lib/gantt/style/style.min.css +1 -1
- package/lib/index.umd.js +345 -190
- package/lib/index.umd.min.js +1 -1
- package/lib/style.css +1 -1
- package/lib/style.min.css +1 -1
- package/lib/ui/index.js +1 -1
- 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-gantt/style/style.css +7 -1
- package/lib/vxe-gantt/style/style.min.css +1 -1
- package/package.json +3 -3
- package/packages/gantt/src/gantt-chart.ts +20 -4
- package/packages/gantt/src/gantt-header.ts +20 -11
- package/packages/gantt/src/gantt-view.ts +289 -168
- package/packages/gantt/src/gantt.ts +8 -8
- package/styles/components/gantt-module/gantt-chart.scss +2 -0
- package/styles/components/gantt.scss +6 -1
- package/styles/theme/base.scss +1 -1
- package/styles/theme/dark.scss +1 -0
- package/styles/theme/light.scss +1 -0
|
@@ -77,6 +77,10 @@
|
|
|
77
77
|
flex-shrink: 0;
|
|
78
78
|
width: var(--vxe-ui-gantt-view-split-bar-width);
|
|
79
79
|
background-color: var(--vxe-ui-gantt-view-split-bar-background-color);
|
|
80
|
+
&:hover,
|
|
81
|
+
&:active {
|
|
82
|
+
background-color: var(--vxe-ui-gantt-view-split-bar-hover-background-color);
|
|
83
|
+
}
|
|
80
84
|
&.is--resize {
|
|
81
85
|
cursor: col-resize;
|
|
82
86
|
}
|
|
@@ -326,7 +330,8 @@
|
|
|
326
330
|
user-select: none;
|
|
327
331
|
@include baseMixin.createAnimationTransition(all, 0.1s);
|
|
328
332
|
&:hover {
|
|
329
|
-
|
|
333
|
+
color: #ffffff;
|
|
334
|
+
background-color: var(--vxe-ui-font-primary-color);
|
|
330
335
|
}
|
|
331
336
|
&:active {
|
|
332
337
|
transform: scale(0.9);
|
package/styles/theme/base.scss
CHANGED
package/styles/theme/dark.scss
CHANGED