-
Notifications
You must be signed in to change notification settings - Fork 334
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
52fd2bb
commit 64b788f
Showing
5 changed files
with
5,171 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/* | ||
This software is allowed to use under GPL or you need to obtain Commercial or Enterise License | ||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License | ||
to use it in non-GPL project. Please contact [email protected] for details | ||
*/ | ||
.gridHoverStyle { | ||
|
@@ -69,6 +69,9 @@ This software is allowed to use under GPL or you need to obtain Commercial or En | |
.gantt_task_line.gantt_project .gantt_task_progress { | ||
background-color: #46ad51; | ||
} | ||
/* | ||
milestone | ||
*/ | ||
/* | ||
lightbox | ||
*/ | ||
|
@@ -564,6 +567,7 @@ div.dhx_modal_cover { | |
.gantt_task_content { | ||
font-size: 12px; | ||
color: #ffffff; | ||
width: 100%; | ||
position: absolute; | ||
white-space: nowrap; | ||
text-align: center; | ||
|
@@ -775,6 +779,29 @@ div.dhx_modal_cover { | |
.gantt_task_line.gantt_project.gantt_selected { | ||
box-shadow: 0 0 5px #46ad51; | ||
} | ||
.gantt_task_line.gantt_milestone { | ||
visibility: hidden; | ||
background-color: #d33daf; | ||
border: 0px solid #61164f; | ||
box-sizing: content-box; | ||
-moz-box-sizing: content-box; | ||
} | ||
.gantt_task_line.gantt_milestone div { | ||
visibility: visible; | ||
} | ||
.gantt_task_line.gantt_milestone .gantt_task_content { | ||
background: inherit; | ||
border: inherit; | ||
border-width: 1px; | ||
border-radius: inherit; | ||
box-sizing: border-box; | ||
-moz-box-sizing: border-box; | ||
-webkit-transform: rotate(45deg); | ||
-moz-transform: rotate(45deg); | ||
-ms-transform: rotate(45deg); | ||
-o-transform: rotate(45deg); | ||
transform: rotate(45deg); | ||
} | ||
.dhx_unselectable, | ||
.dhx_unselectable div { | ||
-webkit-user-select: none; | ||
|
Oops, something went wrong.