mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-01-10 10:11:25 +08:00
71a5662553
This should not be considered final, but we do plan to shrink the size of the entire UI slightly to match platform conventions.
85 lines
1.8 KiB
Text
85 lines
1.8 KiB
Text
@import "ui-variables";
|
|
|
|
// Preferences Specific
|
|
.preferences-wrap {
|
|
.preferences-accounts {
|
|
.accounts-content {
|
|
display: flex;
|
|
|
|
.account-list {
|
|
width: 400px;
|
|
|
|
.items-wrapper {
|
|
height: 525px;
|
|
}
|
|
|
|
.account {
|
|
padding: 10px;
|
|
border-bottom: 1px solid @border-color-divider;
|
|
}
|
|
|
|
.account-name {
|
|
font-size: @font-size-large;
|
|
cursor:default;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.account-subtext {
|
|
font-size: @font-size-small;
|
|
cursor:default;
|
|
}
|
|
|
|
.btn-editable-list {
|
|
height: 29px;
|
|
width: 29px;
|
|
line-height: 29px;
|
|
font-size: 1.3em;
|
|
}
|
|
}
|
|
|
|
.account-details {
|
|
width: 400px;
|
|
padding-top: 20px;
|
|
padding-left: @spacing-super-double;
|
|
padding-right: @spacing-super-double;
|
|
background-color: @gray-lighter;
|
|
border-top: 1px solid @border-color-divider;
|
|
border-right: 1px solid @border-color-divider;
|
|
border-bottom: 1px solid @border-color-divider;
|
|
|
|
.items-wrapper {
|
|
height: 140px;
|
|
}
|
|
|
|
.newsletter {
|
|
padding-top: @padding-base-vertical * 2;
|
|
input[type=checkbox] { margin: 0; position: relative; top: 0; }
|
|
}
|
|
|
|
&>h3 {
|
|
font-size: 1.2em;
|
|
&:first-child {
|
|
margin-top: 0;
|
|
}
|
|
}
|
|
|
|
&>input {
|
|
font-size: 0.9em;
|
|
width: 100%;
|
|
}
|
|
|
|
.default-alias-selector {
|
|
font-size: 0.9em;
|
|
display:flex;
|
|
align-items: baseline;
|
|
padding-top: @padding-base-vertical;
|
|
|
|
&>select {
|
|
flex: 1;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|