Fixed various style bugs with the gantt chart
This commit is contained in:
parent
72468a0604
commit
84b20ef32b
3 changed files with 3 additions and 1 deletions
|
@ -68,7 +68,7 @@
|
||||||
</VueDragResize>
|
</VueDragResize>
|
||||||
</div>
|
</div>
|
||||||
<template v-if="showTaskswithoutDates">
|
<template v-if="showTaskswithoutDates">
|
||||||
<div class="row" v-for="t in tasksWithoutDates" :key="t.id">
|
<div class="row" v-for="(t, k) in tasksWithoutDates" :key="t.id" :style="{background: 'repeating-linear-gradient(90deg, #ededed, #ededed 1px, ' + (k % 2 === 0 ? '#fafafa 1px, #fafafa ' : '#fff 1px, #fff ') + dayWidth + 'px)'}">
|
||||||
<VueDragResize
|
<VueDragResize
|
||||||
class="task nodate"
|
class="task nodate"
|
||||||
:isActive="true"
|
:isActive="true"
|
||||||
|
|
|
@ -148,6 +148,7 @@ $gantt-vertical-border-color: lighten($grey, 45);
|
||||||
min-height: 0;
|
min-height: 0;
|
||||||
top: 10vh;
|
top: 10vh;
|
||||||
right: 10vw;
|
right: 10vw;
|
||||||
|
z-index: 5;
|
||||||
|
|
||||||
.card-content {
|
.card-content {
|
||||||
max-height: 60vh;
|
max-height: 60vh;
|
||||||
|
|
|
@ -240,6 +240,7 @@ h1,h2,h3,h4,h5,h6{
|
||||||
|
|
||||||
.navbar.main-theme {
|
.navbar.main-theme {
|
||||||
background: $light-background;
|
background: $light-background;
|
||||||
|
z-index: 30 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.switch-view {
|
.switch-view {
|
||||||
|
|
Loading…
Reference in a new issue