mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-02-24 16:14:01 +08:00
fix(schedule): Move z-indexes to prevent dropdown layering issue
This commit is contained in:
parent
db90db3131
commit
586d099c23
2 changed files with 5 additions and 2 deletions
|
@ -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 {
|
||||||
|
|
|
@ -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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue