Skip to content

Commit

Permalink
[gui] Set z-index of the last month input field to a lower value
Browse files Browse the repository at this point in the history
Previously the z-index CSS option for the last month selector was set
to a really high number. This way if the user opened for example the
Number of failed files dialog, the last month input field was shown above
the dialog window.
This patch will set this CSS option to a lower value.
  • Loading branch information
csordasmarton committed Jan 28, 2021
1 parent 27c424b commit 3fe4005
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ export default {
position: absolute;
right: 50px;
top: 0px;
z-index: 1000;
z-index: 100;
.last-month {
width: 180px;
Expand Down

0 comments on commit 3fe4005

Please sign in to comment.