2015-12-10 04:35:40 +08:00
|
|
|
@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;
|
|
|
|
}
|
|
|
|
|
2016-03-09 08:06:04 +08:00
|
|
|
.list-item:not(.selected) .sync-error {
|
|
|
|
color: @text-color-error;
|
|
|
|
}
|
|
|
|
|
2015-12-10 04:35:40 +08:00
|
|
|
.account-name {
|
|
|
|
font-size: @font-size-large;
|
|
|
|
cursor:default;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2016-03-09 08:06:04 +08:00
|
|
|
vertical-align: middle;
|
2015-12-10 04:35:40 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.account-subtext {
|
|
|
|
font-size: @font-size-small;
|
|
|
|
cursor:default;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-editable-list {
|
2016-02-10 11:45:24 +08:00
|
|
|
height: 29px;
|
|
|
|
width: 29px;
|
|
|
|
line-height: 29px;
|
2015-12-10 04:35:40 +08:00
|
|
|
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 {
|
2015-12-16 03:56:31 +08:00
|
|
|
height: 140px;
|
2015-12-10 04:35:40 +08:00
|
|
|
}
|
|
|
|
|
2016-03-09 08:06:04 +08:00
|
|
|
.account-error-detail {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
background: linear-gradient(to top, #ca2541 0%, #d55268 100%);
|
|
|
|
|
|
|
|
.action {
|
|
|
|
flex-shrink: 0;
|
|
|
|
background-color: rgba(0,0,0,0.15);
|
|
|
|
text-align: center;
|
|
|
|
padding: 3px @padding-base-horizontal;
|
|
|
|
color: @text-color-inverse
|
|
|
|
}
|
|
|
|
.action:hover {
|
|
|
|
background-color: rgba(255,255,255,0.15);
|
|
|
|
text-decoration:none;
|
|
|
|
}
|
|
|
|
.message {
|
|
|
|
flex-grow: 1;
|
|
|
|
padding: 3px @padding-base-horizontal;
|
|
|
|
color: @text-color-inverse
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-08 10:44:40 +08:00
|
|
|
.newsletter {
|
|
|
|
padding-top: @padding-base-vertical * 2;
|
|
|
|
input[type=checkbox] { margin: 0; position: relative; top: 0; }
|
|
|
|
}
|
|
|
|
|
2015-12-10 04:35:40 +08:00
|
|
|
&>h3 {
|
|
|
|
font-size: 1.2em;
|
|
|
|
&:first-child {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&>input {
|
|
|
|
font-size: 0.9em;
|
|
|
|
width: 100%;
|
|
|
|
}
|
2015-12-15 06:34:13 +08:00
|
|
|
|
|
|
|
.default-alias-selector {
|
|
|
|
font-size: 0.9em;
|
2015-12-16 03:56:31 +08:00
|
|
|
display:flex;
|
|
|
|
align-items: baseline;
|
|
|
|
padding-top: @padding-base-vertical;
|
2015-12-15 06:34:13 +08:00
|
|
|
|
|
|
|
&>select {
|
2015-12-16 03:56:31 +08:00
|
|
|
flex: 1;
|
2015-12-15 06:34:13 +08:00
|
|
|
}
|
|
|
|
}
|
2015-12-10 04:35:40 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|