mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-12 12:40:08 +08:00
57fc6d61e5
Test Plan: script/grunt lint Reviewers: bengotow Reviewed By: bengotow Differential Revision: https://phab.nylas.com/D1549
38 lines
922 B
Text
Executable file
38 lines
922 B
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-small-horizontal @padding-small-vertical @padding-small-horizontal;
|
|
font-size: @font-size-small;
|
|
}
|
|
|
|
.compose-body #contenteditable {
|
|
code.var {
|
|
font: inherit;
|
|
padding:0;
|
|
padding-left:2px;
|
|
padding-right:2px;
|
|
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;
|
|
}
|
|
}
|
|
}
|