mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-01-06 08:08:10 +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
55 lines
1 KiB
Text
55 lines
1 KiB
Text
@import "ui-variables";
|
|
@import "ui-mixins";
|
|
|
|
#account-sidebar {
|
|
order: 2;
|
|
height: 100%;
|
|
overflow: auto;
|
|
|
|
background-color: @source-list-bg;
|
|
-webkit-user-select: none;
|
|
|
|
.item {
|
|
color: @text-color-subtle;
|
|
font-size: @font-size-small;
|
|
font-weight: 400;
|
|
padding: 0 @spacing-standard;
|
|
line-height: @line-height-large * 1.1;
|
|
}
|
|
|
|
.item-divider {
|
|
color:#586870;
|
|
padding-top: 1em;
|
|
padding-bottom: 0.25em;
|
|
}
|
|
|
|
.item-tag {
|
|
.unread {
|
|
float: right;
|
|
font-weight: @font-weight-medium;
|
|
color: @source-list-active-bg;
|
|
background: @source-list-bg;
|
|
}
|
|
img {
|
|
}
|
|
.name {
|
|
text-transform: capitalize;
|
|
margin-left: @padding-xs-horizontal;
|
|
position:relative;
|
|
top:1px;
|
|
}
|
|
&.selected {
|
|
background: @source-list-active-bg;
|
|
color: @source-list-active-color;
|
|
|
|
&:hover {
|
|
background: @source-list-active-bg;
|
|
}
|
|
}
|
|
|
|
&:hover {
|
|
background: darken(@source-list-bg, 5%);
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
}
|