Mailspring/internal_packages/send-later/stylesheets/send-later.less
Juan Tejada a841417011 feat(snooze/send-later): Add snooze and send later plugins
Summary:
- Add initial version of snooze and send later plugins
- Tests are missing since this will probably heavily change before we are done with them

Test Plan: - TODO

Reviewers: drew, bengotow, evan

Reviewed By: bengotow, evan

Differential Revision: https://phab.nylas.com/D2578
2016-02-18 10:06:21 -08:00

71 lines
1.1 KiB
Plaintext

@import "ui-variables";
.send-later {
.send-later-container {
display: flex;
flex-direction: column;
padding: 10px 0;
width: 250px;
.divider {
border-top: 1px solid @border-color-divider;
margin: 10px 0;
width: 90%;
align-self: center;
}
.send-later-section {
padding: 0 10px;
display: flex;
flex-direction: column;
label {
margin-bottom: 3px;
}
input {
border: 1px solid @input-border;
}
.input-date-value {
font-size: 0.9em;
margin: 5px 0;
}
.btn-send-later {
width: 100%;
}
}
.send-later-option {
cursor: default;
width: 100%;
padding: 1px 10px;
.item-date-value {
display: none;
float: right;
font-size: 0.9em;
}
&:hover {
background-color: @background-secondary;
.item-date-value {
display: inline-block;
}
}
}
}
}
.send-later-status {
display: flex;
align-items: center;
em {
font-size: 0.9em;
opacity: 0.62;
}
img {
width: 38px;
margin-left: 15px;
}
}