mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-12 12:40:08 +08:00
155 lines
3.1 KiB
Text
155 lines
3.1 KiB
Text
@import "ui-variables";
|
|
@import "ui-mixins";
|
|
|
|
.account-sidebar {
|
|
flex: 1;
|
|
height: 100%;
|
|
background-color: @source-list-bg;
|
|
|
|
.item.deleted {
|
|
opacity: 0.5;
|
|
}
|
|
}
|
|
|
|
.account-switcher {
|
|
order: 1;
|
|
height: auto;
|
|
background-color: @source-list-bg;
|
|
border-bottom: 1px solid @border-color-divider;
|
|
|
|
&.open {
|
|
.dropdown {
|
|
opacity: 1;
|
|
pointer-events: initial;
|
|
transform:scale(1, 1);
|
|
transform-origin: top;
|
|
.inner {
|
|
opacity: 1;
|
|
transition: opacity 50ms linear;
|
|
transition-delay: 50ms;
|
|
}
|
|
}
|
|
.toggle {
|
|
transform: rotateX(0deg);
|
|
}
|
|
}
|
|
|
|
.primary-item {
|
|
padding-top: @padding-large-vertical;
|
|
padding-bottom: @padding-base-vertical;
|
|
padding-left: 10px;
|
|
.name {
|
|
padding-left: 7px;
|
|
}
|
|
}
|
|
|
|
.secondary-item {
|
|
&:hover {
|
|
background: @list-hover-bg;
|
|
}
|
|
|
|
padding: 6px 5px 0 14px;
|
|
|
|
&:first-child {
|
|
padding-top: 8px;
|
|
border-top-left-radius: @list-border-radius;
|
|
border-top-right-radius: @list-border-radius;
|
|
}
|
|
&:last-child {
|
|
padding-bottom: 2px;
|
|
border-bottom-left-radius: @list-border-radius;
|
|
border-bottom-right-radius: @list-border-radius;
|
|
}
|
|
}
|
|
|
|
.toggle {
|
|
transform: rotateX(180deg);
|
|
}
|
|
|
|
.dropdown {
|
|
opacity: 0;
|
|
pointer-events: none;
|
|
transform:scale(1, 0.2);
|
|
transform-origin: top;
|
|
transition: transform 125ms cubic-bezier(0.18, 0.89, 0.32, 1.12), opacity 100ms linear;
|
|
.inner {
|
|
opacity: 0;
|
|
transition: opacity 25ms linear;
|
|
transition-delay: 0;
|
|
}
|
|
margin-top: -7px;
|
|
background: lighten(@source-list-bg, 5%);
|
|
border: 1px solid @border-color-divider;
|
|
border-radius: @border-radius-base;
|
|
border-top-left-radius: 0;
|
|
border-top-right-radius: 0;
|
|
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.21);
|
|
|
|
position: absolute;
|
|
top: 54px;
|
|
width: 100%;
|
|
z-index: 999;
|
|
|
|
.account .gravatar {
|
|
top: 6px;
|
|
}
|
|
}
|
|
|
|
.item {
|
|
color: @text-color-subtle;
|
|
display: block;
|
|
img.content-mask {
|
|
background-color: @text-color-subtle;
|
|
vertical-align: text-bottom;
|
|
}
|
|
font-size: @font-size-small;
|
|
font-weight: 400;
|
|
padding-right: @spacing-standard;
|
|
line-height: @line-height-large * 1.1;
|
|
clear: both;
|
|
position: relative;
|
|
margin-bottom: 0;
|
|
|
|
.gravatar {
|
|
background-size: 28px 28px;
|
|
width: 28px;
|
|
height: 28px;
|
|
position: absolute;
|
|
z-index: 2;
|
|
border-radius: 4px;
|
|
top: -2px;
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
.name {
|
|
order: 2;
|
|
padding-left: @padding-small-horizontal * 0.85;
|
|
position:relative;
|
|
top:1px;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
padding-top: @padding-small-vertical;
|
|
padding-bottom:@padding-small-vertical;
|
|
line-height: @line-height-small;
|
|
}
|
|
&:hover {
|
|
cursor: default;
|
|
}
|
|
}
|
|
}
|
|
body.platform-win32 {
|
|
.account-switcher {
|
|
.dropdown {
|
|
border-radius: 0;
|
|
}
|
|
.item {
|
|
border-radius: 0;
|
|
}
|
|
.secondary-item {
|
|
&:first-child, &:last-child {
|
|
border-radius: 0;
|
|
}
|
|
}
|
|
}
|
|
}
|