mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-27 17:18:24 +08:00
Fixed Swedish flag
This commit is contained in:
parent
d3abb31ee7
commit
8af2140e7a
3 changed files with 2 additions and 5 deletions
|
@ -48,7 +48,7 @@
|
||||||
this.licenseTrigger = ko.observable(false);
|
this.licenseTrigger = ko.observable(false);
|
||||||
|
|
||||||
this.adminManLoading = ko.computed(function () {
|
this.adminManLoading = ko.computed(function () {
|
||||||
return '000' !== [this.domains.loading() ? '1' : '0', this.plugins.loading() ? '1' : '0', this.packagesLoading() ? '1' : '0'].join('');
|
return '000' !== [this.domains.loading() ? '1' : '0', this.plugins.loading() ? '1' : '0', this.packages.loading() ? '1' : '0'].join('');
|
||||||
}, this);
|
}, this);
|
||||||
|
|
||||||
this.adminManLoadingVisibility = ko.computed(function () {
|
this.adminManLoadingVisibility = ko.computed(function () {
|
||||||
|
|
|
@ -1481,7 +1481,6 @@
|
||||||
if (oMessage)
|
if (oMessage)
|
||||||
{
|
{
|
||||||
var
|
var
|
||||||
self = this,
|
|
||||||
oAttachment = null,
|
oAttachment = null,
|
||||||
sTemp = oMessage.subject()
|
sTemp = oMessage.subject()
|
||||||
;
|
;
|
||||||
|
@ -1506,7 +1505,6 @@
|
||||||
ComposePopupView.prototype.addDropboxAttachment = function (oDropboxFile)
|
ComposePopupView.prototype.addDropboxAttachment = function (oDropboxFile)
|
||||||
{
|
{
|
||||||
var
|
var
|
||||||
self = this,
|
|
||||||
oAttachment = null,
|
oAttachment = null,
|
||||||
iAttachmentSizeLimit = Utils.pInt(Settings.settingsGet('AttachmentLimit')),
|
iAttachmentSizeLimit = Utils.pInt(Settings.settingsGet('AttachmentLimit')),
|
||||||
mSize = oDropboxFile['bytes']
|
mSize = oDropboxFile['bytes']
|
||||||
|
@ -1561,7 +1559,6 @@
|
||||||
ComposePopupView.prototype.addDriveAttachment = function (oDriveFile, sAccessToken)
|
ComposePopupView.prototype.addDriveAttachment = function (oDriveFile, sAccessToken)
|
||||||
{
|
{
|
||||||
var
|
var
|
||||||
self = this,
|
|
||||||
iAttachmentSizeLimit = Utils.pInt(Settings.settingsGet('AttachmentLimit')),
|
iAttachmentSizeLimit = Utils.pInt(Settings.settingsGet('AttachmentLimit')),
|
||||||
oAttachment = null,
|
oAttachment = null,
|
||||||
mSize = oDriveFile['fileSize'] ? Utils.pInt(oDriveFile['fileSize']) : 0
|
mSize = oDriveFile['fileSize'] ? Utils.pInt(oDriveFile['fileSize']) : 0
|
||||||
|
|
2
vendors/flags/flags-fixed.css
vendored
2
vendors/flags/flags-fixed.css
vendored
|
@ -28,7 +28,7 @@
|
||||||
.flag.flag-lv, .flag.flag-lv-lv {background-position: -112px -88px}
|
.flag.flag-lv, .flag.flag-lv-lv {background-position: -112px -88px}
|
||||||
.flag.flag-hu, .flag.flag-hu-hu {background-position: -32px -66px}
|
.flag.flag-hu, .flag.flag-hu-hu {background-position: -32px -66px}
|
||||||
.flag.flag-sk, .flag.flag-sk-sk {background-position: -144px -132px}
|
.flag.flag-sk, .flag.flag-sk-sk {background-position: -144px -132px}
|
||||||
.flag.flag-sv, .flag.flag-sv-sv, .flag.flag-sv-se {background-position: -32px -143px}
|
.flag.flag-sv, .flag.flag-sv-sv, .flag.flag-sv-se {background-position: -80px -132px}
|
||||||
.flag.flag-sl, .flag.flag-sl-si, .flag.flag-sl-sl {background-position: -160px -132px}
|
.flag.flag-sl, .flag.flag-sl-si, .flag.flag-sl-sl {background-position: -160px -132px}
|
||||||
.flag.flag-ua, .flag.flag-ua-ua, .flag.flag-uk-ua {background-position: -96px -154px}
|
.flag.flag-ua, .flag.flag-ua-ua, .flag.flag-uk-ua {background-position: -96px -154px}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue