diff --git a/dev/External/Admin/ko.js b/dev/External/Admin/ko.js
index be2278275..36aeecd82 100644
--- a/dev/External/Admin/ko.js
+++ b/dev/External/Admin/ko.js
@@ -11,8 +11,8 @@ ko.bindingHandlers.saveTrigger = {
if ('custom' === element.saveTriggerType) {
element.append(
'ย ย ',
- Element.fromHTML(' '),
- Element.fromHTML(' '),
+ Element.fromHTML(' '),
+ Element.fromHTML('โ '),
Element.fromHTML(' ')
);
element.classList.add('settings-saved-trigger');
diff --git a/dev/Stores/User/Pgp.js b/dev/Stores/User/Pgp.js
index 31cbcc875..3e839333d 100644
--- a/dev/Stores/User/Pgp.js
+++ b/dev/Stores/User/Pgp.js
@@ -352,7 +352,7 @@ class PgpUserStore {
if (encrypted || signed) {
const domText = dom.textContent;
- verControl = Element.fromHTML('
'); // ๐
+ verControl = Element.fromHTML('๐
');
if (encrypted) {
verControl.title = i18n('MESSAGE/PGP_ENCRYPTED_MESSAGE_DESC');
verControl.addEventHandler('click', domControlEncryptedClickHelper(this, dom, domText, recipients));
diff --git a/dev/Styles/SettingsGeneral.less b/dev/Styles/SettingsGeneral.less
index 773a33bdb..fd3136366 100644
--- a/dev/Styles/SettingsGeneral.less
+++ b/dev/Styles/SettingsGeneral.less
@@ -5,20 +5,6 @@
margin-right: 15px;
}
- .notification-desc-denied {
- color: #999;
- display: none;
- }
-
- .denied-by-browser {
- .notification-desc-denied {
- display: inline;
- }
- .notification-desc {
- color: #999;
- }
- }
-
.flag-selector {
padding-top: 5px;
}
diff --git a/dev/Styles/_FontasticToBoot.less b/dev/Styles/_FontasticToBoot.less
index a6ce7812d..879a83b22 100644
--- a/dev/Styles/_FontasticToBoot.less
+++ b/dev/Styles/_FontasticToBoot.less
@@ -1,43 +1,36 @@
+.fontastic,
[class^="icon-"],
[class*=" icon-"] {
display: inline-block;
- width: 16px;
- height: 16px;
+ width: 1em;
+ height: 1em;
+}
+
+[class^="icon-"],
+[class*=" icon-"] {
line-height: 1;
font-size: 16px;
vertical-align: text-top;
- .disabled &, .btn[disabled] &{
+ .disabled &:not(.icon-white),
+ .btn[disabled] &:not(.icon-white){
color: grey;
- &.icon-white {
- color: #fff;
- }
}
}
.icon-folder, .icon-folder-add, .icon-list {
- line-height: 18px;
font-size: 18px;
margin-top: -1px;
margin-left: -1px;
width: 17px;
}
-.iconsize50 {
- line-height: 50px;
- font-size: 50px;
- width: 50px;
- height: 50px;
-}
-
.iconsize24 {
- line-height: 24px;
font-size: 24px;
}
.iconsize20 {
- line-height: 20px;
font-size: 20px;
}
@@ -89,45 +82,6 @@
color: red;
}
-.iconcolor-white {
- color: white;
-}
-
-.iconcolor-grey {
- color: #aaa;
-}
-
-.denied-by-browser {
- cursor: default;
- .icon-checkbox-checked, icon-checkbox-unchecked {
- cursor: default;
- }
-}
-
-.right-mini, .down-mini {
- width: 16px;
- line-height: 20px;
-}
-
-/*
-@keyframes rotation {
- to {transform: rotate(1turn);}
-}
-
-.icon-spinner {
- width: 16px;
- height: 16px;
-
- &:before {
- transform-origin: 8px 8px;
- margin-top: 1px;
- display: inline-block;
- font-size: 16px;
- line-height: 100%;
- }
-}
-*/
-
@keyframes rotation {
to {transform: rotate(1turn);}
}
@@ -136,10 +90,6 @@
font-family: Arial;
- &:before {
- content: "";
- }
-
height: 11px;
width: 11px;
@@ -150,15 +100,6 @@
border-top-color: #333;
border-radius: 100%;
- animation: none;
-
- &.animated {
- border-color: transparent;
- border-top-color: #999;
-
- animation: rotation .8s infinite ease-in-out;
- }
-
&.big {
height: 13px;
@@ -179,3 +120,14 @@
}
}
}
+
+.icon-spinner:not(.not-animated) {
+ border-color: transparent;
+ border-top-color: #999;
+ animation: rotation .8s infinite ease-in-out;
+}
+
+.fontastic.icon-spinner {
+ text-indent: -1em;
+ overflow: hidden;
+}
diff --git a/snappymail/v/0.0.0/app/templates/Views/Admin/AdminLogin.html b/snappymail/v/0.0.0/app/templates/Views/Admin/AdminLogin.html
index df56b9647..79173317e 100644
--- a/snappymail/v/0.0.0/app/templates/Views/Admin/AdminLogin.html
+++ b/snappymail/v/0.0.0/app/templates/Views/Admin/AdminLogin.html
@@ -14,7 +14,7 @@
autocomplete="username" autocorrect="off" autocapitalize="off" spellcheck="false" data-i18n="[placeholder]LOGIN/LABEL_LOGIN"
data-bind="textInput: login, disable: submitRequest" />
-
+ ๐ค
@@ -25,7 +25,7 @@
autocomplete="current-password" autocorrect="off" autocapitalize="off" spellcheck="false" data-i18n="[placeholder]LOGIN/LABEL_PASSWORD"
data-bind="textInput: password, disable: submitRequest" />
-
+ ๐
diff --git a/snappymail/v/0.0.0/app/templates/Views/Admin/AdminPane.html b/snappymail/v/0.0.0/app/templates/Views/Admin/AdminPane.html
index bcaa28d0f..1ef76b237 100644
--- a/snappymail/v/0.0.0/app/templates/Views/Admin/AdminPane.html
+++ b/snappymail/v/0.0.0/app/templates/Views/Admin/AdminPane.html
@@ -2,7 +2,7 @@
diff --git a/snappymail/v/0.0.0/app/templates/Views/Admin/AdminSettingsDomainListItem.html b/snappymail/v/0.0.0/app/templates/Views/Admin/AdminSettingsDomainListItem.html
index 6d32c4368..292499e25 100644
--- a/snappymail/v/0.0.0/app/templates/Views/Admin/AdminSettingsDomainListItem.html
+++ b/snappymail/v/0.0.0/app/templates/Views/Admin/AdminSettingsDomainListItem.html
@@ -10,7 +10,7 @@
-
+ ๐
@@ -18,4 +18,4 @@
-
\ No newline at end of file
+
diff --git a/snappymail/v/0.0.0/app/templates/Views/Admin/AdminSettingsPackagesListItem.html b/snappymail/v/0.0.0/app/templates/Views/Admin/AdminSettingsPackagesListItem.html
index cc15c6c2a..bc21d1ced 100644
--- a/snappymail/v/0.0.0/app/templates/Views/Admin/AdminSettingsPackagesListItem.html
+++ b/snappymail/v/0.0.0/app/templates/Views/Admin/AdminSettingsPackagesListItem.html
@@ -16,7 +16,7 @@
-
-
+ ๐
+
diff --git a/snappymail/v/0.0.0/app/templates/Views/Admin/AdminSettingsSecurity.html b/snappymail/v/0.0.0/app/templates/Views/Admin/AdminSettingsSecurity.html
index 47c21d4e7..9e24eb7e1 100644
--- a/snappymail/v/0.0.0/app/templates/Views/Admin/AdminSettingsSecurity.html
+++ b/snappymail/v/0.0.0/app/templates/Views/Admin/AdminSettingsSecurity.html
@@ -32,7 +32,7 @@
-
+
OK
@@ -102,7 +102,7 @@
diff --git a/snappymail/v/0.0.0/app/templates/Views/User/Login.html b/snappymail/v/0.0.0/app/templates/Views/User/Login.html
index e17e20b17..f9b0074bb 100644
--- a/snappymail/v/0.0.0/app/templates/Views/User/Login.html
+++ b/snappymail/v/0.0.0/app/templates/Views/User/Login.html
@@ -38,7 +38,7 @@
data-i18n="[placeholder]GLOBAL/PASSWORD" />
-
+ ๐
@@ -53,7 +53,7 @@
data-bind="textInput: additionalCode, disable: submitRequest"
data-i18n="[placeholder]LOGIN/LABEL_VERIFICATION_CODE" />
-
+ ๐
@@ -76,7 +76,7 @@
@@ -110,14 +110,14 @@
diff --git a/snappymail/v/0.0.0/app/templates/Views/User/MailMessageList.html b/snappymail/v/0.0.0/app/templates/Views/User/MailMessageList.html
index 776bab49e..1b305deb2 100644
--- a/snappymail/v/0.0.0/app/templates/Views/User/MailMessageList.html
+++ b/snappymail/v/0.0.0/app/templates/Views/User/MailMessageList.html
@@ -24,7 +24,7 @@
@@ -59,7 +59,7 @@
-
+ โ
-
+ ๐
@@ -117,21 +117,21 @@
diff --git a/snappymail/v/0.0.0/app/templates/Views/User/MailMessageListItem.html b/snappymail/v/0.0.0/app/templates/Views/User/MailMessageListItem.html
index 615dcfd65..4caf50550 100644
--- a/snappymail/v/0.0.0/app/templates/Views/User/MailMessageListItem.html
+++ b/snappymail/v/0.0.0/app/templates/Views/User/MailMessageListItem.html
@@ -30,8 +30,8 @@
-
-
+ โ
+ โ
diff --git a/snappymail/v/0.0.0/app/templates/Views/User/MailMessageListItemNoPreviewPane.html b/snappymail/v/0.0.0/app/templates/Views/User/MailMessageListItemNoPreviewPane.html
index 0ef471ed5..06651c436 100644
--- a/snappymail/v/0.0.0/app/templates/Views/User/MailMessageListItemNoPreviewPane.html
+++ b/snappymail/v/0.0.0/app/templates/Views/User/MailMessageListItemNoPreviewPane.html
@@ -30,8 +30,8 @@
-
-
+ โ
+ โ
diff --git a/snappymail/v/0.0.0/app/templates/Views/User/MailMessageView.html b/snappymail/v/0.0.0/app/templates/Views/User/MailMessageView.html
index 837221cc3..4776e66e2 100644
--- a/snappymail/v/0.0.0/app/templates/Views/User/MailMessageView.html
+++ b/snappymail/v/0.0.0/app/templates/Views/User/MailMessageView.html
@@ -4,13 +4,13 @@
@@ -70,42 +70,42 @@
@@ -309,7 +309,7 @@
-
+ ๐ผ
@@ -338,7 +338,7 @@
-
+ ๐
@@ -347,7 +347,7 @@
-
+ โถ
@@ -366,16 +366,16 @@
-
+ โ
-
+ โ
+ css: {'icon-file-zip': !downloadAsZipLoading(), 'icon-spinner': downloadAsZipLoading()}">
diff --git a/snappymail/v/0.0.0/app/templates/Views/User/PopupsAccount.html b/snappymail/v/0.0.0/app/templates/Views/User/PopupsAccount.html
index 86cb97e2c..fa3716d34 100644
--- a/snappymail/v/0.0.0/app/templates/Views/User/PopupsAccount.html
+++ b/snappymail/v/0.0.0/app/templates/Views/User/PopupsAccount.html
@@ -37,8 +37,8 @@
diff --git a/snappymail/v/0.0.0/app/templates/Views/User/PopupsComposeOpenPgp.html b/snappymail/v/0.0.0/app/templates/Views/User/PopupsComposeOpenPgp.html
index 0562c85b6..b2fb0f545 100644
--- a/snappymail/v/0.0.0/app/templates/Views/User/PopupsComposeOpenPgp.html
+++ b/snappymail/v/0.0.0/app/templates/Views/User/PopupsComposeOpenPgp.html
@@ -59,7 +59,7 @@
-
+ ๐
( )
@@ -106,7 +106,7 @@