Rautenborders Fertig

main
Manuel Tauber 2024-02-09 13:27:49 +01:00
parent 6fb9ef1a7f
commit 4f4bcf28eb
2 changed files with 18 additions and 18 deletions

View File

@ -753,11 +753,16 @@ export class NttGanttComponent implements OnInit {
if (args.taskbarType == 'Milestone' && args.data.taskData.TaskID.includes("D2"))
{
console.log(args.taskbarElement.children[1].style.add);
args.taskbarElement.children[1].classList.add('e-gantt-milestone-border')
args.taskbarElement.children[1].classList.add('e-gantt-milestone-border1');
// console.log(args.taskbarElement.children[1]);
// args.taskbarElement.children[1].children[0].classList.add('e-gantt-milestone-border');
// args.taskbarElement.children[1].children[1].classList.add('e-gantt-milestone-border');
}
else{
if(args.taskbarType == 'Milestone'){
args.taskbarElement.children[1].classList.add('e-gantt-milestone-border')
}
}
if(args.data.taskData.isRes == false){
if(args.data.taskData.TaskID.includes("D2")){

View File

@ -24,29 +24,24 @@
.e-gantt .e-gantt-chart .e-active {
background-color: #E0E0E0 !important;
}
.e-gantt .e-gantt-chart .e-gantt-milestone {
/* border: 2px solid red !important; */
/* border-radius: 50%; */
background-color: transparent;
/* border: 10px red; */
/* width: 25px;
height: 25px; */
}
/* e-gantt-milestone-b {
/* border: 2px solid red !important; */
/* border-radius: 50%; */
/* background-color: red; */
/* border: 10px red; */
/* width: 25px;
height: 25px; */
/* } */
.e-gantt-milestone-border {
/* border: 2px solid red !important; */
border-radius: 50%;
/* border-top-width: 1px; */
color: red;
background-color: grey;
background-color: transparent !important;
}
.e-gantt-milestone-border1 {
/* border: 2px solid red !important; */
border-radius: 30%;
color: red;
background-color: #9e9e9b !important;
}
</style>