Mailspring/internal_packages/message-templates/stylesheets/message-templates.less
Ben Gotow eb6cc11a83 feature(templates): Pick templates, fill variable regions, Draft extensions
Summary:
fix(keymappings): Enter to focus item, logout works now

Minor fix for some problems with activity bar

Fix tabindex = 1 where tabindex should be =-1

Remove idgen that was causing footers to be replaced

WIP

Draft store extension hooks

Test Plan: Run tests

Reviewers: evan

Reviewed By: evan

Differential Revision: https://review.inboxapp.com/D1320
2015-03-20 10:23:50 -07:00

44 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: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;
-webkit-user-select:none;
}
.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;
}
}
}