mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-12 20:44:30 +08:00
38 lines
738 B
Text
38 lines
738 B
Text
@import "ui-variables";
|
|
@import "ui-mixins";
|
|
|
|
.open-tracking-icon img.content-mask.unopened {
|
|
background-color: #6b777d;
|
|
}
|
|
.open-tracking-icon img.content-mask.opened {
|
|
background-color: @text-color-link;
|
|
}
|
|
.open-tracking-icon .open-count {
|
|
display: inline-block;
|
|
position: relative;
|
|
left: -16px;
|
|
text-align: center;
|
|
|
|
background-color: @text-color-link;
|
|
font-size: 12px;
|
|
font-weight: bold;
|
|
}
|
|
.open-tracking-icon {
|
|
width: 15px;
|
|
}
|
|
|
|
.read-receipt-message-status {
|
|
color: @text-color-very-subtle;
|
|
margin-left: 10px;
|
|
cursor: default;
|
|
&.Unread {
|
|
img.content-mask {
|
|
background-color: @text-color-very-subtle;
|
|
}
|
|
}
|
|
&.Read {
|
|
img.content-mask {
|
|
background-color: @text-color-link;
|
|
}
|
|
}
|
|
}
|