mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-07-13 03:27:39 +03:00
Styles fixes
This commit is contained in:
parent
4c6fd9cdd1
commit
b3f3a51be6
4 changed files with 51 additions and 3 deletions
|
|
@ -74,6 +74,19 @@
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&.ui-sortable-helper {
|
||||||
|
background: #F5F5F5;
|
||||||
|
border: 1px solid #DDD;
|
||||||
|
|
||||||
|
.button-delete, .delete-account {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
td {
|
||||||
|
border-width: 0px;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.identity-item {
|
.identity-item {
|
||||||
|
|
@ -101,5 +114,18 @@
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&.ui-sortable-helper {
|
||||||
|
background: #F5F5F5;
|
||||||
|
border: 1px solid #DDD;
|
||||||
|
|
||||||
|
.button-delete, .delete-identity {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
td {
|
||||||
|
border-width: 0px;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -77,9 +77,16 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
&.ui-sortable-helper {
|
&.ui-sortable-helper {
|
||||||
.delete-filter {
|
background: #F5F5F5;
|
||||||
|
border: 1px solid #DDD;
|
||||||
|
|
||||||
|
.button-delete, .delete-filter {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
td {
|
||||||
|
border-width: 0px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -66,5 +66,18 @@
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&.ui-sortable-helper {
|
||||||
|
background: #F5F5F5;
|
||||||
|
border: 1px solid #DDD;
|
||||||
|
|
||||||
|
.button-delete, .delete-template {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
td {
|
||||||
|
border-width: 0px;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -196,8 +196,8 @@
|
||||||
|
|
||||||
this.attachmentsPlace = ko.observable(false);
|
this.attachmentsPlace = ko.observable(false);
|
||||||
|
|
||||||
this.attachments.subscribe(Utils.windowResizeCallback);
|
this.attachments.subscribe(this.resizerTrigger);
|
||||||
this.attachmentsPlace.subscribe(Utils.windowResizeCallback);
|
this.attachmentsPlace.subscribe(this.resizerTrigger);
|
||||||
|
|
||||||
this.attachmentsInErrorCount.subscribe(function (iN) {
|
this.attachmentsInErrorCount.subscribe(function (iN) {
|
||||||
if (0 === iN)
|
if (0 === iN)
|
||||||
|
|
@ -759,6 +759,7 @@
|
||||||
{
|
{
|
||||||
self.oEditor = new HtmlEditor(self.composeEditorArea(), null, function () {
|
self.oEditor = new HtmlEditor(self.composeEditorArea(), null, function () {
|
||||||
fOnInit(self.oEditor);
|
fOnInit(self.oEditor);
|
||||||
|
self.resizerTrigger();
|
||||||
}, function (bHtml) {
|
}, function (bHtml) {
|
||||||
self.isHtml(!!bHtml);
|
self.isHtml(!!bHtml);
|
||||||
});
|
});
|
||||||
|
|
@ -766,6 +767,7 @@
|
||||||
else if (this.oEditor)
|
else if (this.oEditor)
|
||||||
{
|
{
|
||||||
fOnInit(this.oEditor);
|
fOnInit(this.oEditor);
|
||||||
|
this.resizerTrigger();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue