mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-12 12:40:08 +08:00
8bd14602c3
Summary: fix(scrollbars): overflow-y, not overflow fix(participants): Overflow not set correctly on participants fix(thread-list): Don't show reply or fw icon for unsent drafts Remove bad code for updating sidebar drafts Mark as read in MessageStore so that receiving new messages while viewing a thread re-marks it as read Don't show messages I send with the "Reply" icon Test Plan: Run tests Reviewers: evan Reviewed By: evan Differential Revision: https://review.inboxapp.com/D1418
42 lines
1.1 KiB
Text
Executable file
42 lines
1.1 KiB
Text
Executable file
@import "ui-variables";
|
|
@import "ui-mixins";
|
|
|
|
@code-bg-color: #fcf4db;
|
|
|
|
.template-picker .menu {
|
|
.content-container {
|
|
height:150px;
|
|
overflow-y:scroll;
|
|
}
|
|
}
|
|
|
|
.template-status-bar {
|
|
background-color: @code-bg-color;
|
|
color:darken(@code-bg-color, 70%);
|
|
border: 1.5px solid darken(@code-bg-color, 10%);
|
|
border-radius: @border-radius-small;
|
|
padding-top: @padding-small-vertical;
|
|
padding-bottom: @padding-small-vertical;
|
|
padding-left: @padding-small-horizontal;
|
|
padding-right: @padding-small-horizontal;
|
|
font-size: @font-size-small;
|
|
display:inline-block;
|
|
margin:auto;
|
|
}
|
|
|
|
.compose-body #contenteditable {
|
|
code.var {
|
|
font: inherit;
|
|
padding:0;
|
|
padding-left:2px;
|
|
padding-right:2px;
|
|
background-color: transparent;
|
|
border-bottom: 1.5px solid darken(@code-bg-color, 10%);
|
|
background-color: fade(@code-bg-color, 10%);
|
|
&.empty {
|
|
color:darken(@code-bg-color, 70%);
|
|
border-bottom: 1px solid darken(@code-bg-color, 14%);
|
|
background-color: @code-bg-color;
|
|
}
|
|
}
|
|
}
|