mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-12 12:40:08 +08:00
f46502ad3e
Summary: - Also refactors the code a bit for testability and maintainability - Fixes #1515 Test Plan: - Unit tests Reviewers: evan, drew, bengotow Reviewed By: bengotow Differential Revision: https://phab.nylas.com/D2651
56 lines
942 B
Text
56 lines
942 B
Text
@import "ui-variables";
|
|
|
|
.send-later {
|
|
.menu {
|
|
width: 250px;
|
|
.item {
|
|
.time {
|
|
display: none;
|
|
float: right;
|
|
padding-right: @padding-base-horizontal;
|
|
}
|
|
&.selected,
|
|
&:hover {
|
|
.time {
|
|
display: inline-block;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.divider {
|
|
border-top: 1px solid @border-color-divider;
|
|
}
|
|
.custom-section {
|
|
padding: @padding-base-vertical * 1.5 @padding-base-horizontal;
|
|
}
|
|
.cancel-section {
|
|
padding: @padding-base-vertical @padding-base-horizontal;
|
|
padding-bottom: @padding-base-vertical * 1.2;
|
|
.btn {
|
|
width: 100%;
|
|
}
|
|
}
|
|
}
|
|
|
|
.btn-send-later {
|
|
.at {
|
|
margin-left: 3px;
|
|
}
|
|
}
|
|
|
|
|
|
.send-later-status {
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
.time {
|
|
font-size: 0.9em;
|
|
opacity: 0.62;
|
|
color: @component-active-color;
|
|
font-weight: @font-weight-normal;
|
|
}
|
|
img {
|
|
width: 38px;
|
|
margin-left: 15px;
|
|
}
|
|
}
|