mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-01 05:29:20 +03:00
Added individual signatures for every identity.
This commit is contained in:
parent
996703311b
commit
1119022916
45 changed files with 1353 additions and 337 deletions
|
|
@ -63,6 +63,7 @@
|
|||
@import "Filter.less";
|
||||
@import "Languages.less";
|
||||
@import "Account.less";
|
||||
@import "Template.less";
|
||||
@import "OpenPgpKey.less";
|
||||
@import "TwoFactor.less";
|
||||
@import "Identity.less";
|
||||
|
|
@ -85,6 +86,7 @@
|
|||
@import "Settings.less";
|
||||
@import "SettingsGeneral.less";
|
||||
@import "SettingsAccounts.less";
|
||||
@import "SettingsTemplates.less";
|
||||
@import "SettingsOpenPGP.less";
|
||||
@import "SettingsFolders.less";
|
||||
@import "SettingsThemes.less";
|
||||
|
|
|
|||
|
|
@ -52,9 +52,10 @@
|
|||
background-color: #333;
|
||||
background-color: rgba(0,0,0,0.8) !important;
|
||||
|
||||
.close {
|
||||
color: #fff;
|
||||
.close, .close-custom, .minimize-custom {
|
||||
opacity: 1;
|
||||
color: #fff;
|
||||
border-color: #eee;
|
||||
}
|
||||
|
||||
.btn.disabled {
|
||||
|
|
@ -157,7 +158,7 @@
|
|||
.error {
|
||||
color: red;
|
||||
}
|
||||
.close {
|
||||
.close, .close-custom {
|
||||
float: left;
|
||||
padding-right: 13px;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -41,7 +41,7 @@
|
|||
background-color: #333;
|
||||
background-color: rgba(0,0,0,0.8) !important;
|
||||
|
||||
.close {
|
||||
.close, .close-custom {
|
||||
color: #fff;
|
||||
opacity: 1;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,9 +1,30 @@
|
|||
.popups {
|
||||
.b-identity-content {
|
||||
|
||||
&.modal {
|
||||
width: 750px;
|
||||
}
|
||||
|
||||
.modal-header {
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
.modal-body {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.control-label {
|
||||
width: 100px;
|
||||
}
|
||||
|
||||
.controls {
|
||||
margin-left: 120px;
|
||||
}
|
||||
|
||||
.e-signature-place {
|
||||
height: 300px;
|
||||
}
|
||||
|
||||
.textEmail {
|
||||
margin-top: 5px;
|
||||
font-weight: bold;
|
||||
|
|
|
|||
|
|
@ -249,6 +249,13 @@ html.rl-no-preview-pane {
|
|||
margin-right:5px
|
||||
}
|
||||
|
||||
&.deleted-mark {
|
||||
opacity: .7;
|
||||
.sender, .subject, .subject-prefix, .subject-suffix {
|
||||
text-decoration: line-through;
|
||||
}
|
||||
}
|
||||
|
||||
&.important .importantMark {
|
||||
display: inline;
|
||||
}
|
||||
|
|
|
|||
70
dev/Styles/SettingsTemplates.less
Normal file
70
dev/Styles/SettingsTemplates.less
Normal file
|
|
@ -0,0 +1,70 @@
|
|||
|
||||
.b-settings-identities {
|
||||
|
||||
.process-place {
|
||||
text-align: center;
|
||||
width: 600px;
|
||||
padding: 14px 0;
|
||||
}
|
||||
|
||||
.list-table {
|
||||
|
||||
width: 600px;
|
||||
|
||||
td {
|
||||
padding: 4px 8px;
|
||||
line-height: 30px;
|
||||
}
|
||||
|
||||
.drag-handle {
|
||||
color: #eee;
|
||||
}
|
||||
|
||||
tr:hover .drag-handle {
|
||||
color: #aaa;
|
||||
}
|
||||
|
||||
.template-img {
|
||||
font-size: 12px;
|
||||
margin-right: 5px;
|
||||
}
|
||||
|
||||
.template-name {
|
||||
display: inline-block;
|
||||
word-break: break-all;
|
||||
box-sizing: border-box;
|
||||
line-height: 22px;
|
||||
}
|
||||
}
|
||||
|
||||
.template-item {
|
||||
|
||||
.e-action {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.drag-handle {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.button-delete {
|
||||
margin-right: 15px;
|
||||
margin-top: 5px;
|
||||
visibility: hidden;
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
.delete-access {
|
||||
&.button-delete {
|
||||
visibility: visible;
|
||||
margin-right: 0;
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
.delete-template {
|
||||
cursor: pointer;
|
||||
opacity: 0.5;
|
||||
}
|
||||
}
|
||||
}
|
||||
12
dev/Styles/Template.less
Normal file
12
dev/Styles/Template.less
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
.popups {
|
||||
.b-template-add-content {
|
||||
|
||||
&.modal {
|
||||
width: 700px;
|
||||
}
|
||||
|
||||
.modal-header {
|
||||
background-color: #fff;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -11,6 +11,32 @@ label.inline {
|
|||
display: inline-block;
|
||||
}
|
||||
|
||||
.close-custom {
|
||||
.close;
|
||||
}
|
||||
|
||||
button.close-custom {
|
||||
padding: 0;
|
||||
cursor: pointer;
|
||||
background: transparent;
|
||||
border: 0;
|
||||
-webkit-appearance: none;
|
||||
}
|
||||
|
||||
.minimize-custom {
|
||||
border: 0px solid #333;
|
||||
border-bottom-width: 3px;
|
||||
display: inline-block;
|
||||
float: right;
|
||||
height: 20px;
|
||||
width: 16px;
|
||||
font-size: 20px;
|
||||
font-weight: bold;
|
||||
line-height: 20px;
|
||||
margin-right: 15px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.legend {
|
||||
display: block;
|
||||
width: 100%;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue