mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-14 05:41:05 +08:00
a841417011
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
30 lines
736 B
Text
30 lines
736 B
Text
@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;
|
|
}
|
|
}
|
|
}
|
|
}
|