mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-11 18:32:20 +08:00
bb318bf69c
Summary: Adds a date and time picker to the new event creator Test Plan: todo Reviewers: bengotow, juan Reviewed By: bengotow, juan Differential Revision: https://phab.nylas.com/D2842
23 lines
387 B
Text
23 lines
387 B
Text
@import 'ui-variables';
|
|
|
|
.date-picker {
|
|
display: inline-block;
|
|
position: relative;
|
|
z-index: 999;
|
|
.day-text {
|
|
&:hover {
|
|
color: @text-color-link-hover;
|
|
}
|
|
&.focused {
|
|
color: @text-color-link-hover;
|
|
}
|
|
color: @text-color-link;
|
|
}
|
|
.mini-month-view-wrap {
|
|
position: absolute;
|
|
top: 20px;
|
|
left: 0;
|
|
width: 225px;
|
|
height: 225px;
|
|
}
|
|
}
|