mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-11 10:12:00 +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
25 lines
524 B
Text
25 lines
524 B
Text
@import "ui-variables";
|
|
|
|
.release-bar {
|
|
order: -1;
|
|
}
|
|
.release-bar-inner {
|
|
height: 25px;
|
|
display: block;
|
|
padding-left: 10px;
|
|
padding-top: 2px;
|
|
color: @text-color-inverse;
|
|
background-color: @background-color-success;
|
|
border-bottom: 1px solid darken(@background-color-success, 10%);
|
|
|
|
&:hover {
|
|
background-color: darken(@background-color-success, 10%);
|
|
border-bottom: 1px solid darken(@background-color-success, 15%);
|
|
text-decoration: none;
|
|
color: white;
|
|
}
|
|
|
|
i {
|
|
margin-right:8px;
|
|
}
|
|
}
|