Mailspring/internal_packages/message-templates/stylesheets/message-templates.less
Ben Gotow 8bd14602c3 fix(*): Small patches for thread icons, marking as read, scrollbars
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
2015-04-20 15:59:43 -07:00

43 lines
1.1 KiB
Plaintext
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;
}
}
}