Skip to content

Commit eb54fdb

Browse files
committed
[update] version 7.1.0
1 parent 43995c1 commit eb54fdb

24 files changed

+2780
-538
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# dhtmlxGantt #
22

33
[![dhtmlx.com](https://img.shields.io/badge/made%20by-DHTMLX-blue)](https://dhtmlx.com/)
4-
[![npm: v.7.0.13](https://img.shields.io/badge/npm-v.7.0.13-blue.svg)](https://www.npmjs.com/package/dhtmlx-gantt)
4+
[![npm: v.7.1.0](https://img.shields.io/badge/npm-v.7.1.0-blue.svg)](https://www.npmjs.com/package/dhtmlx-gantt)
55
[![License: GPL v2](https://img.shields.io/badge/license-GPL%20v2-blue.svg)](https://www.gnu.org/licenses/old-licenses/gpl-2.0.html)
66

77
[Getting started](#getting-started) | [Features](#features) | [Follow us](#followus) | [License](#license) | [Useful links](#links)
@@ -128,7 +128,7 @@ Like our page on [Facebook](https://www.facebook.com/dhtmlx/) :thumbsup:
128128
<a name="license"></a>
129129
## License ##
130130

131-
dhtmlxGantt v.7.0.13 Standard
131+
dhtmlxGantt v.7.1.0 Standard
132132

133133
This version of dhtmlxGantt is distributed under GPL 2.0 license and can be legally used in GPL projects.
134134

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gantt",
3-
"version": "7.0.13",
3+
"version": "7.1.0",
44
"homepage": "https://dhtmlx.com/docs/products/dhtmlxGantt/",
55
"description": "An open source JavaScript Gantt chart that helps you illustrate a project schedule in a nice-looking chart.",
66
"main": [

codebase/dhtmlxgantt.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

codebase/dhtmlxgantt.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Type definitions for dhtmlxGantt 7.0.13
1+
// Type definitions for dhtmlxGantt 7.1.0
22
// Project: https://dhtmlx.com/docs/products/dhtmlxGantt
33

44
type GanttCallback = (...args: any[]) => any;

codebase/dhtmlxgantt.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

codebase/dhtmlxgantt.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

codebase/skins/dhtmlxgantt_broadway.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

codebase/skins/dhtmlxgantt_contrast_black.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

codebase/skins/dhtmlxgantt_contrast_white.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

codebase/skins/dhtmlxgantt_material.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

codebase/skins/dhtmlxgantt_meadow.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

codebase/skins/dhtmlxgantt_skyblue.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

codebase/skins/dhtmlxgantt_terrace.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

codebase/sources/dhtmlxgantt.css

+37-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
@license
33
4-
dhtmlxGantt v.7.0.13 Standard
4+
dhtmlxGantt v.7.1.0 Standard
55
66
This version of dhtmlxGantt is distributed under GPL 2.0 license and can be legally used in GPL projects.
77
@@ -310,16 +310,40 @@ To use dhtmlxGantt in non-GPL projects (and get Pro version of the product), ple
310310
width: 1px;
311311
margin: 0 auto;
312312
}
313-
.gantt_drag_marker.gantt_grid_resize_area {
313+
.gantt_task_grid_row_resize_wrap {
314+
cursor: row-resize;
315+
position: absolute;
316+
height: 13px;
317+
margin-top: -7px;
318+
left: 0px;
319+
width: 100%;
320+
}
321+
.gantt_task_grid_row_resize_wrap .gantt_task_grid_row_resize {
322+
background-color: #ebebeb;
323+
top: 6px;
324+
height: 1px;
325+
width: 100%;
326+
margin: 0 auto;
327+
position: relative;
328+
}
329+
.gantt_drag_marker.gantt_grid_resize_area,
330+
.gantt_drag_marker.gantt_row_grid_resize_area {
314331
background-color: rgba(231, 231, 231, 0.5);
315-
border-left: 1px solid #CECECE;
316-
border-right: 1px solid #CECECE;
317332
height: 100%;
318333
width: 100%;
319334
-moz-box-sizing: border-box;
320335
-webkit-box-sizing: border-box;
321336
box-sizing: border-box;
322337
}
338+
.gantt_drag_marker.gantt_grid_resize_area {
339+
border-left: 1px solid #CECECE;
340+
border-right: 1px solid #CECECE;
341+
}
342+
.gantt_drag_marker.gantt_row_grid_resize_area {
343+
border-top: 1px solid #CECECE;
344+
border-bottom: 1px solid #CECECE;
345+
pointer-events: none;
346+
}
323347
.gantt_row {
324348
display: flex;
325349
}
@@ -879,7 +903,7 @@ div.dhx_modal_cover {
879903
border-right-color: transparent !important;
880904
border-bottom-color: transparent !important;
881905
border-left-color: #FFA011;
882-
margin-top: -1px;
906+
/*margin-top: -1px;*/
883907
}
884908
.gantt_link_arrow_left {
885909
border-width: 4px 6px 4px 0;
@@ -1047,6 +1071,10 @@ div.dhx_modal_cover {
10471071
opacity: 0.1;
10481072
pointer-events: none;
10491073
}
1074+
.gantt_rollup_child .gantt_link_control,
1075+
.gantt_rollup_child:hover .gantt_link_control {
1076+
display: none;
1077+
}
10501078
.gantt_unselectable,
10511079
.gantt_unselectable div {
10521080
-webkit-user-select: none;
@@ -1888,6 +1916,10 @@ div.dhx_modal_cover {
18881916
-ms-user-select: none;
18891917
user-select: none;
18901918
}
1919+
.gantt_noselect .gantt_grid_data .gantt_row:hover,
1920+
.gantt_noselect .gantt_grid_data .gantt_row.odd:hover {
1921+
background-color: unset;
1922+
}
18911923
.gantt_drag_marker {
18921924
position: absolute;
18931925
top: -1000px;

0 commit comments

Comments
 (0)