mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-27 19:19:21 +03:00
Fix gmail imap mails count
This commit is contained in:
parent
57221d9a8e
commit
348cb25dbc
10 changed files with 91 additions and 30 deletions
|
|
@ -87,6 +87,15 @@ html.rl-no-preview-pane {
|
|||
}
|
||||
}
|
||||
|
||||
.line-loading {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
right: 0;
|
||||
z-index: 102;
|
||||
height: 0px;
|
||||
top: 50px;
|
||||
}
|
||||
|
||||
.mainDelimiter {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
|
|
@ -530,6 +539,10 @@ html.ssm-state-desktop-large {
|
|||
}
|
||||
}
|
||||
|
||||
html.cssanimations.rl-anim .messageList .line-loading {
|
||||
height: 5px !important;
|
||||
}
|
||||
|
||||
.draggablePlace {
|
||||
z-index: 10002;
|
||||
color: #fff;
|
||||
|
|
|
|||
|
|
@ -392,7 +392,7 @@ html.rl-no-preview-pane .messageView {
|
|||
}
|
||||
}
|
||||
|
||||
html.cssanimations.rl-anim .line-loading {
|
||||
html.cssanimations.rl-anim .messageItem .line-loading {
|
||||
height: 5px !important;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -716,6 +716,12 @@ MailBoxMessageListViewModel.prototype.initShortcuts = function ()
|
|||
}
|
||||
});
|
||||
|
||||
// check mail
|
||||
key('ctrl+r, command+r', [Enums.KeyState.FolderList, Enums.KeyState.MessageList, Enums.KeyState.MessageView], function () {
|
||||
self.reloadCommand();
|
||||
return false;
|
||||
});
|
||||
|
||||
// check all
|
||||
key('ctrl+a, command+a', Enums.KeyState.MessageList, function () {
|
||||
self.checkAll(!(self.checkAll() && !self.isIncompleteChecked()));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue