Redo the datepicker z-index fix that didn't work because it has been applied only to the div.legacy, but as datepicker is appended to the end of the document it's outside the element. Also making the number a lot bigger to account for a large amount of tasks, which cause higher z-indexes.

Fixes #2245.
This commit is contained in:
Jyri-Petteri Paloposki 2020-07-24 17:37:37 +03:00
parent ccdb78a289
commit ca6382832e
2 changed files with 4 additions and 4 deletions

View file

@ -53,3 +53,7 @@ body {
color: $text-color; color: $text-color;
background-color: $body-bg; background-color: $body-bg;
} }
.ui-datepicker {
z-index: 999999 !important;
}

View file

@ -1349,10 +1349,6 @@ div.auto_complete {
} }
} }
.ui-datepicker {
z-index: 1000 !important;
}
.ui-autocomplete-loading { .ui-autocomplete-loading {
background: white image-url('ui-anim_basic_16x16.gif') right center no-repeat; background: white image-url('ui-anim_basic_16x16.gif') right center no-repeat;
} }