mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-01-09 17:55:35 +08:00
03b248cab2
Test Plan: Run existing tests Reviewers: evan Reviewed By: evan Maniphest Tasks: T2282 Differential Revision: https://phab.nylas.com/D1735
36 lines
705 B
Text
36 lines
705 B
Text
@import "ui-variables";
|
|
|
|
.quoted-text-control {
|
|
color: @text-color-very-subtle;
|
|
display: inline-block;
|
|
border: 1px solid fade(@text-color-very-subtle, 15%);
|
|
border-radius: 3px;
|
|
line-height: 10px;
|
|
padding: 6px 10px;
|
|
font-weight: 600;
|
|
font-size: @font-size-smaller;
|
|
|
|
&.no-quoted-text {
|
|
display:none;
|
|
}
|
|
|
|
&:hover {
|
|
cursor: pointer;
|
|
color: @text-color-subtle;
|
|
border: 1px solid fade(@text-color-subtle, 35%);
|
|
}
|
|
|
|
&:before {
|
|
content:'\2022\2022\2022';
|
|
font-size: @font-size-smaller * 0.8;
|
|
top:-1px;
|
|
position:relative;
|
|
padding-right:8px;
|
|
}
|
|
&.show-quoted-text:after {
|
|
content:'Hide previous';
|
|
}
|
|
&:after {
|
|
content:'Show previous';
|
|
}
|
|
}
|