mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-02-20 22:23:53 +08:00
fix(aliases): Add note that aliases may need to be setup
This commit is contained in:
parent
5c48d27cfc
commit
71bd96f978
3 changed files with 14 additions and 6 deletions
|
@ -142,7 +142,14 @@ class PreferencesAccountDetails extends Component {
|
|||
value={account.label}
|
||||
onBlur={this._saveChanges}
|
||||
onChange={this._onAccountLabelUpdated} />
|
||||
|
||||
<h3>Aliases</h3>
|
||||
|
||||
<div className="platform-note">
|
||||
You may need to configure aliases with your
|
||||
mail provider (Outlook, Gmail) before using them.
|
||||
</div>
|
||||
|
||||
<EditableList
|
||||
showEditIcon
|
||||
createInputProps={{placeholder: aliasPlaceholder}}
|
||||
|
|
|
@ -48,7 +48,7 @@
|
|||
border-bottom: 1px solid @border-color-divider;
|
||||
|
||||
.items-wrapper {
|
||||
height: 180px;
|
||||
height: 140px;
|
||||
}
|
||||
|
||||
&>h3 {
|
||||
|
@ -65,11 +65,12 @@
|
|||
|
||||
.default-alias-selector {
|
||||
font-size: 0.9em;
|
||||
float: right;
|
||||
display:flex;
|
||||
align-items: baseline;
|
||||
padding-top: @padding-base-vertical;
|
||||
|
||||
&>select {
|
||||
min-width: 35%;
|
||||
max-width: 243px;
|
||||
flex: 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -175,10 +175,10 @@
|
|||
|
||||
.platform-note {
|
||||
padding: @padding-base-vertical @padding-base-horizontal;
|
||||
background: @background-secondary;
|
||||
background: fade(@black, 4%);
|
||||
border-left:3px solid @info-color;
|
||||
margin:@padding-base-vertical 0;
|
||||
font-size:0.95em;
|
||||
font-size:0.90em;
|
||||
&:before {
|
||||
color: @info-color;
|
||||
font-weight:600;
|
||||
|
|
Loading…
Reference in a new issue