mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-12 12:40:08 +08:00
774957a5ff
Summary: - Removes account switcher almost entirely - Update context menu to edit and delete sidebar items - Gross hardcoded position and size for the switcher icon -- will likely update with later redesign Test Plan: - Visual Reviewers: evan, bengotow Reviewed By: bengotow Differential Revision: https://phab.nylas.com/D2527
30 lines
397 B
Text
30 lines
397 B
Text
@import "ui-variables";
|
|
@import "ui-mixins";
|
|
|
|
.account-sidebar {
|
|
flex: 1;
|
|
height: 100%;
|
|
background-color: @source-list-bg;
|
|
|
|
.item.deleted {
|
|
opacity: 0.5;
|
|
}
|
|
|
|
.nylas-outline-view:first-child {
|
|
.heading span {
|
|
margin-right: 25px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.account-switcher {
|
|
position: absolute;
|
|
top: 7px;
|
|
right: 17px;
|
|
z-index: 3;
|
|
img {
|
|
transform: rotateX(180deg);
|
|
}
|
|
}
|
|
|
|
|