Mailspring/internal_packages/send-later/stylesheets/send-later.less
Juan Tejada f46502ad3e test(plugins): Add snooze and send later specs
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
2016-03-03 12:38:42 -08:00

57 lines
942 B
Plaintext

@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;
}
}