mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-12 12:40:08 +08:00
c49d523e8f
Summary: Shortens and simplifies UI variables so that unused variables are no longer present. Test Plan: Tested locally. Reviewers: evan, bengotow Reviewed By: bengotow Differential Revision: https://phab.nylas.com/D2738
40 lines
907 B
Text
40 lines
907 B
Text
@import "../../../static/variables/ui-variables";
|
|
|
|
@btn-default-bg-color: lighten(@toolbar-background-color,4%);
|
|
|
|
@accent-primary: #f07746;
|
|
@accent-primary-dark: darken(#f07746, 1%);
|
|
|
|
@border-color-secondary: lighten(@background-secondary, 10%);
|
|
|
|
@toolbar-background-color: #41403b;
|
|
@light: rgb(246, 246, 246);
|
|
|
|
.sheet-toolbar .btn-toolbar img.content-mask {
|
|
background-color: @light;
|
|
}
|
|
|
|
.layout-mode-popout .sheet-toolbar {
|
|
display: none;
|
|
}
|
|
|
|
.sheet-toolbar-container {
|
|
background-image: -webkit-linear-gradient(top,@toolbar-background-color, darken(@toolbar-background-color,5%));
|
|
box-shadow: none;
|
|
}
|
|
|
|
.sheet-toolbar .item-back img.content-mask{
|
|
background-color: @light;
|
|
}
|
|
|
|
.sheet-toolbar .item-back .item-back-title{
|
|
color: @light;
|
|
}
|
|
|
|
.btn-icon img.content-mask {
|
|
background-color:@light;
|
|
}
|
|
|
|
.btn-icon img.content-mask:hover {
|
|
background-color:@accent-primary;
|
|
}
|