mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-28 11:39:21 +03:00
Change build system (Grunt -> Gulp)
Remove attachments on reply (Closes #195) Do not show deleted (flag \Deleted) messages (Closes #185) Release commit
This commit is contained in:
parent
aebd47393c
commit
333c063cf1
44 changed files with 1300 additions and 772 deletions
|
|
@ -53,7 +53,7 @@ function AdminAbout()
|
|||
}
|
||||
|
||||
return sType;
|
||||
|
||||
|
||||
}, this);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ var
|
|||
* @type {Object.<Function>}
|
||||
*/
|
||||
Utils = {},
|
||||
|
||||
|
||||
/**
|
||||
* @type {Object.<Function>}
|
||||
*/
|
||||
|
|
@ -67,7 +67,7 @@ var
|
|||
I18n = window['rainloopI18N'] || {},
|
||||
|
||||
$html = $('html'),
|
||||
|
||||
|
||||
// $body = $('body'),
|
||||
|
||||
$window = $(window),
|
||||
|
|
@ -75,4 +75,4 @@ var
|
|||
$document = $(window.document),
|
||||
|
||||
NotificationClass = window.Notification && window.Notification.requestPermission ? window.Notification : null
|
||||
;
|
||||
;
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
*/
|
||||
var
|
||||
RL = null,
|
||||
|
||||
|
||||
$proxyDiv = $('<div></div>')
|
||||
;
|
||||
/*jshint onevar: true*/
|
||||
/*jshint onevar: true*/
|
||||
|
|
@ -14,6 +14,7 @@
|
|||
@import "../../vendors/bootstrap/less/forms.less";
|
||||
@import "../../vendors/bootstrap/less/tables.less";
|
||||
|
||||
// @import "../../vendors/bootstrap/less/sprites.less";
|
||||
@import "../../vendors/bootstrap/less/dropdowns.less";
|
||||
@import "../../vendors/bootstrap/less/wells.less";
|
||||
@import "../../vendors/bootstrap/less/component-animations.less";
|
||||
|
|
@ -32,8 +33,14 @@
|
|||
@import "../../vendors/bootstrap/less/modals.less";
|
||||
@import "../../vendors/bootstrap/less/tooltip.less";
|
||||
@import "../../vendors/bootstrap/less/popovers.less";
|
||||
|
||||
// @import "../../vendors/bootstrap/less/thumbnails.less";
|
||||
@import "../../vendors/bootstrap/less/labels-badges.less";
|
||||
@import "../../vendors/bootstrap/less/progress-bars.less";
|
||||
// @import "../../vendors/bootstrap/less/accordion.less";
|
||||
// @import "../../vendors/bootstrap/less/carousel.less";
|
||||
// @import "../../vendors/bootstrap/less/hero-unit.less";
|
||||
|
||||
@import "../../vendors/bootstrap/less/utilities.less";
|
||||
|
||||
@import "_FontasticToBoot.less";
|
||||
|
|
|
|||
|
|
@ -230,20 +230,31 @@ html.rl-no-preview-pane {
|
|||
}
|
||||
}
|
||||
|
||||
.visible-on-ctrl {
|
||||
.visible-on-ctrl, .visible-on-ctrl-btn {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.hidden-on-ctrl {
|
||||
.hidden-on-ctrl-btn {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
html.rl-ctrl-key-pressed .visible-on-ctrl {
|
||||
display: inline-block;
|
||||
}
|
||||
html.rl-ctrl-key-pressed {
|
||||
|
||||
html.rl-ctrl-key-pressed .hidden-on-ctrl {
|
||||
display: none;
|
||||
.visible-on-ctrl {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.btn-group.open .visible-on-ctrl-btn {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.hidden-on-ctrl {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.btn-group.open .hidden-on-ctrl-btn {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
#rl-loading, #rl-loading-error {
|
||||
|
|
|
|||
|
|
@ -1,10 +1,4 @@
|
|||
|
||||
/*.folderPaddingHelper(@i) {
|
||||
(~".folder-padding.deep-@{i}") {
|
||||
width: 15px * @i + 10px;
|
||||
}
|
||||
}*/
|
||||
|
||||
.b-settings-folders {
|
||||
|
||||
&.ignore-folder-subscribe {
|
||||
|
|
@ -62,7 +56,7 @@
|
|||
border-bottom: 1px dashed #333;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
|
||||
.folder-name-input {
|
||||
border-width: 1px;
|
||||
margin-bottom: 0;
|
||||
|
|
@ -116,10 +110,4 @@
|
|||
.folder-padding.deep-5 {
|
||||
width: 15px * 5 + 10px;
|
||||
}
|
||||
|
||||
/* .folderPaddingHelper(1);
|
||||
.folderPaddingHelper(2);
|
||||
.folderPaddingHelper(3);
|
||||
.folderPaddingHelper(4);
|
||||
.folderPaddingHelper(5);*/
|
||||
}
|
||||
|
|
@ -1371,7 +1371,6 @@ PopupsComposeViewModel.prototype.prepearMessageAttachments = function (oMessage,
|
|||
break;
|
||||
}
|
||||
|
||||
bAdd = true;
|
||||
if (bAdd)
|
||||
{
|
||||
oAttachment = new ComposeAttachmentModel(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue