mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-04 15:07:02 +03:00
Small fixes
This commit is contained in:
parent
bd935eae32
commit
1623f515ff
10 changed files with 47 additions and 15 deletions
|
|
@ -6358,6 +6358,9 @@ html.rl-no-preview-pane #rl-right .ui-resizable-handle {
|
|||
.b-folders .e-item .e-link.print-count .count {
|
||||
display: inline;
|
||||
}
|
||||
.b-folders .e-item .e-link.unread-sub {
|
||||
font-weight: bold;
|
||||
}
|
||||
.b-folders .e-item .e-link .e-collapsed-sign {
|
||||
cursor: pointer;
|
||||
width: 22px;
|
||||
|
|
|
|||
2
rainloop/v/0.0.0/static/css/app.min.css
vendored
2
rainloop/v/0.0.0/static/css/app.min.css
vendored
File diff suppressed because one or more lines are too long
|
|
@ -7540,6 +7540,16 @@ FolderModel.prototype.initComputed = function ()
|
|||
'owner': this
|
||||
});
|
||||
|
||||
this.hasUnreadMessages = ko.computed(function () {
|
||||
return 0 < this.messageCountUnread();
|
||||
}, this);
|
||||
|
||||
this.hasSubScribedUnreadMessagesSubfolders = ko.computed(function () {
|
||||
return !!_.find(this.subFolders(), function (oFolder) {
|
||||
return oFolder.hasUnreadMessages() || oFolder.hasSubScribedUnreadMessagesSubfolders();
|
||||
});
|
||||
}, this);
|
||||
|
||||
return this;
|
||||
};
|
||||
|
||||
|
|
@ -8777,7 +8787,7 @@ PopupsComposeViewModel.prototype.onShow = function (sType, oMessageOrArray, aToE
|
|||
}
|
||||
|
||||
if (bSignatureToAll && '' !== sSignature &&
|
||||
Enums.ComposeType.EditAsNew !== sComposeType)
|
||||
Enums.ComposeType.EditAsNew !== sComposeType && Enums.ComposeType.Draft !== sComposeType)
|
||||
{
|
||||
sText = Utils.convertPlainTextToHtml(this.convertSignature(sSignature,
|
||||
fEmailArrayToStringLineHelper(oMessage.from, true))) + '<br />' + sText;
|
||||
|
|
|
|||
8
rainloop/v/0.0.0/static/js/app.min.js
vendored
8
rainloop/v/0.0.0/static/js/app.min.js
vendored
File diff suppressed because one or more lines are too long
Loading…
Add table
Add a link
Reference in a new issue