Ensure that the mouseover event for TaskComponent is executed
For resizable tasks the z-index was less than the value for the dependency. This prevented the mouseover event of happening for TaskComponent. Without this event happening, the end of the dependency was not detected and adding a dependency was impossible. This could be tested with resizable tasks, e.g. not allocated yet tasks. FEA: ItEr75S08MigrationZK5
This commit is contained in:
parent
92a5b2a27f
commit
5a06fa2c0a
1 changed files with 1 additions and 6 deletions
|
|
@ -187,7 +187,7 @@
|
|||
text-align: center;
|
||||
vertical-align: middle;
|
||||
cursor: pointer;
|
||||
z-index : 99;
|
||||
z-index : 99 !important;
|
||||
}
|
||||
|
||||
/* Task lane properties */
|
||||
|
|
@ -922,11 +922,6 @@ height: 100%
|
|||
padding: 1px 4px;
|
||||
}
|
||||
|
||||
|
||||
.yui-resize {
|
||||
z-index: auto !important;
|
||||
}
|
||||
|
||||
.advancedallocationlayout .name {
|
||||
min-width:200px;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue