fix(schedule): Move z-indexes to prevent dropdown layering issue

This commit is contained in:
Ben Gotow 2016-04-11 14:58:58 -07:00
parent db90db3131
commit 586d099c23
2 changed files with 5 additions and 2 deletions

View file

@ -61,12 +61,15 @@
} }
} }
.row.time { .row.time {
z-index: 10; // So the time pickers show over
.time-picker { .time-picker {
text-align: center; text-align: center;
} }
.time-picker-wrap { .time-picker-wrap {
margin-right: 5px; margin-right: 5px;
.time-options {
z-index: 10; // So the time pickers show over
}
} }
} }
.datetime-input-container { .datetime-input-container {

View file

@ -3,7 +3,6 @@
.date-picker { .date-picker {
display: inline-block; display: inline-block;
position: relative; position: relative;
z-index: 999;
.day-text { .day-text {
&:hover { &:hover {
color: @text-color-link-hover; color: @text-color-link-hover;
@ -19,5 +18,6 @@
left: 0; left: 0;
width: 225px; width: 225px;
height: 225px; height: 225px;
z-index: 999;
} }
} }