Improve styling of reminders, especially in dark mode #689

This commit is contained in:
Ben Gotow 2020-04-16 01:45:32 -05:00
parent 2a92394aca
commit 28a1ce3215
2 changed files with 24 additions and 1 deletions

View file

@ -47,13 +47,19 @@
.send-reminders-header {
color: @reminders-color;
background: linear-gradient(to bottom, #fbfafe 0%, #fff 25%);
background: linear-gradient(to bottom, #eee8ff 0%, #fff 25%);
padding-top: 13px;
padding-left: 20px;
padding-bottom: 10px;
cursor: default;
margin-top: -19px;
margin-bottom: 15px;
margin-left: -20px;
margin-right: -20px;
border-bottom: 1px solid #e7e1fb;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
img {
background-color: @reminders-color;
margin-top: -6px;

View file

@ -73,3 +73,20 @@ img.content-light {
.thread-list .list-item:not(.unread):not(.selected):not(.focused) {
color: #aaa;
}
.thread-list .list-item.thread-list-reminder-item {
background-color: #312856;
&.unread {
background-color: #312856;
&:not(.focused):not(.selected) {
background-color: #312856;
}
}
}
.send-reminders-header {
color: #7d5bef;
background: #312856;
border-bottom: 1px solid #4d3b8a;
}