2015-02-19 06:32:20 +08:00
|
|
|
@import "ui-variables";
|
2015-02-19 06:24:16 +08:00
|
|
|
|
2015-03-03 07:33:58 +08:00
|
|
|
.quoted-text-control {
|
2015-03-05 02:24:20 +08:00
|
|
|
color: @text-color-very-subtle;
|
2015-02-19 06:24:16 +08:00
|
|
|
display: inline-block;
|
2015-07-14 07:28:20 +08:00
|
|
|
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;
|
2015-02-19 06:24:16 +08:00
|
|
|
|
2015-03-03 07:33:58 +08:00
|
|
|
&.no-quoted-text {
|
2015-02-19 06:24:16 +08:00
|
|
|
display:none;
|
|
|
|
}
|
2015-07-14 07:28:20 +08:00
|
|
|
|
2015-02-19 06:24:16 +08:00
|
|
|
&:hover {
|
2015-03-05 02:24:20 +08:00
|
|
|
cursor: pointer;
|
2015-07-14 07:28:20 +08:00
|
|
|
color: @text-color-subtle;
|
|
|
|
border: 1px solid fade(@text-color-subtle, 35%);
|
2015-02-19 06:24:16 +08:00
|
|
|
}
|
2015-07-14 07:28:20 +08:00
|
|
|
|
2015-02-19 06:24:16 +08:00
|
|
|
&:before {
|
|
|
|
content:'\2022\2022\2022';
|
2015-07-14 07:28:20 +08:00
|
|
|
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';
|
2015-02-19 06:24:16 +08:00
|
|
|
}
|
|
|
|
}
|