Mailspring/internal_packages/thread-snooze/stylesheets/snooze-popover.less
Juan Tejada 76bda1dbe4 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

31 lines
736 B
Plaintext

@import "ui-variables";
@snooze-img: "../internal_packages/thread-snooze/assets/ic-toolbar-native-snooze@2x.png";
.thread-list .list-item .list-column-HoverActions .action.action-snooze {
background: url(@snooze-img) center no-repeat, @background-gradient;
background-size: 50%;
}
.snooze-popover {
.snooze-container {
display: flex;
flex-direction: column;
.snooze-item {
padding: 7px 17px;
cursor: default;
min-width: 175px;
background-color: @background-primary;
line-height: initial;
text-align: initial;
&+.snooze-item {
border-top: 1px solid @border-color-divider;
}
&:hover {
background-color: @background-secondary;
}
}
}
}