mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-02-05 14:59:28 +08:00
c301dcfbb1
Summary: feat(mode-switch): almost working Remove SheetStore in favor of bigger WorkspaceStore Back button for mode switching Test Plan: Tests WIP Reviewers: evan Reviewed By: evan Differential Revision: https://review.inboxapp.com/D1292
84 lines
1.4 KiB
Text
84 lines
1.4 KiB
Text
@import "ui-variables";
|
|
@import "ui-mixins";
|
|
|
|
*:focus, input:focus {
|
|
outline:none;
|
|
}
|
|
|
|
.thread-list {
|
|
order: 3;
|
|
flex: 1;
|
|
overflow: auto;
|
|
-webkit-user-select: none;
|
|
position: relative;
|
|
|
|
.message-count {
|
|
color: @text-color-inverse;
|
|
background: @background-tertiary;
|
|
padding: 4px 6px 2px 6px;
|
|
margin-left: 1em;
|
|
}
|
|
|
|
.participants {
|
|
font-size: @font-size-base;
|
|
font-weight: @font-weight-semi-bold;
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.subject {
|
|
font-size: @font-size-small;
|
|
font-weight: @font-weight-normal;
|
|
}
|
|
.snippet, .timestamp {
|
|
font-size: @font-size-small;
|
|
font-weight: @font-weight-normal;
|
|
color: @text-color-subtle;
|
|
}
|
|
|
|
.unread:not(.selected) {
|
|
&:before {
|
|
content: "";
|
|
position: absolute;
|
|
height: 99%;
|
|
width: 5px;
|
|
top: 0;
|
|
background: @unread-color;
|
|
}
|
|
|
|
.subject {
|
|
color: @unread-color;
|
|
}
|
|
}
|
|
|
|
.selected {
|
|
.participants {
|
|
color: @text-color-inverse;
|
|
}
|
|
.subject {
|
|
color: @text-color-inverse;
|
|
}
|
|
.snippet, .timestamp {
|
|
color: @text-color-inverse-subtle;
|
|
}
|
|
}
|
|
|
|
.star-button {
|
|
font-size: 16px;
|
|
.fa-star {
|
|
color: rgb(239, 209, 0);
|
|
&:hover {
|
|
cursor: pointer;
|
|
color: rgb(220,220,220);
|
|
}
|
|
}
|
|
.fa-star-o {
|
|
color: rgb(220,220,220);
|
|
&:hover {
|
|
cursor: pointer;
|
|
color: rgb(239, 209, 0);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|