2015-02-19 06:32:20 +08:00
|
|
|
@import "ui-variables";
|
2015-10-22 11:32:33 +08:00
|
|
|
@import "ui-mixins";
|
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;
|
2016-03-22 09:22:20 +08:00
|
|
|
padding: 1px 5px;
|
2015-07-14 07:28:20 +08:00
|
|
|
font-weight: 600;
|
|
|
|
font-size: @font-size-smaller;
|
2015-10-05 15:38:48 +08:00
|
|
|
margin: 5px 0 3px 0;
|
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-09-04 10:41:56 +08:00
|
|
|
.dots {
|
|
|
|
display: inline-block;
|
2015-07-14 07:28:20 +08:00
|
|
|
font-size: @font-size-smaller * 0.8;
|
|
|
|
top:-1px;
|
|
|
|
position:relative;
|
|
|
|
}
|
2015-02-19 06:24:16 +08:00
|
|
|
}
|
2015-07-22 02:50:08 +08:00
|
|
|
|
2015-10-22 11:32:33 +08:00
|
|
|
body.platform-win32 {
|
|
|
|
.quoted-text-control {
|
|
|
|
.windows-btn-bg;
|
|
|
|
.windows-btn-border;
|
|
|
|
&:hover {
|
|
|
|
color: @text-color-very-subtle;
|
|
|
|
.windows-btn-border;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.mail-label {
|
|
|
|
border-radius: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-22 02:50:08 +08:00
|
|
|
.mail-label {
|
|
|
|
font-size: 0.9em;
|
2016-02-10 11:45:24 +08:00
|
|
|
padding: 1px 8px;
|
2015-07-22 02:50:08 +08:00
|
|
|
margin-right: 6px;
|
|
|
|
flex-shrink: 0;
|
|
|
|
border-radius: 3px;
|
|
|
|
display: inline-block;
|
|
|
|
cursor:default;
|
|
|
|
line-height: 22px;
|
2015-07-24 02:10:51 +08:00
|
|
|
-webkit-user-select: none;
|
2016-02-12 07:24:33 +08:00
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
2015-07-22 02:50:08 +08:00
|
|
|
}
|
|
|
|
.mail-label.removable {
|
|
|
|
padding-left:12px;
|
|
|
|
padding-right:4px;
|
|
|
|
.inner {
|
|
|
|
position: relative;
|
|
|
|
left:0;
|
|
|
|
transition: left 0.05s linear;
|
|
|
|
}
|
|
|
|
.x {
|
|
|
|
opacity: 0;
|
|
|
|
left:-4px;
|
|
|
|
top:-3px;
|
|
|
|
position: relative;
|
|
|
|
display:inline-block;
|
|
|
|
transition: opacity 0.05s ease-in;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.mail-label.removable:hover {
|
|
|
|
.inner {
|
|
|
|
left:-6px;
|
|
|
|
}
|
|
|
|
.x {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
2015-09-09 01:53:07 +08:00
|
|
|
|
|
|
|
|
|
|
|
.mail-important-icon {
|
2016-02-12 07:24:33 +08:00
|
|
|
width: 25px;
|
|
|
|
height: 25px;
|
2015-09-09 01:53:07 +08:00
|
|
|
display:inline-block;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position:center;
|
|
|
|
background-image:url(../static/images/important/Icon-Important-Hover@2x.png);
|
|
|
|
background-size: 16px;
|
|
|
|
}
|
2016-01-19 15:59:33 +08:00
|
|
|
.mail-important-icon.enabled.active {
|
2015-09-09 01:53:07 +08:00
|
|
|
background-image:url(../static/images/important/Icon-Important-Active@2x.png);
|
|
|
|
background-size: 16px;
|
|
|
|
}
|
2016-01-19 15:59:33 +08:00
|
|
|
.mail-important-icon.enabled:hover {
|
2015-09-09 01:53:07 +08:00
|
|
|
background-image:url(../static/images/important/Icon-Important-HoverActive@2x.png);
|
|
|
|
background-size: 16px;
|
|
|
|
}
|
2016-01-19 15:59:33 +08:00
|
|
|
.mail-important-icon.enabled.active:hover {
|
2015-09-10 05:03:54 +08:00
|
|
|
background-image:url(../static/images/important/Icon-Important-Active@2x.png);
|
|
|
|
background-size: 16px;
|
|
|
|
-webkit-filter: brightness(90%);
|
|
|
|
}
|