diff --git a/plugins/talk-plugin-profile-data/server/views/download.ejs b/plugins/talk-plugin-profile-data/server/views/download.ejs
index bc8e0aa54..260badf3a 100644
--- a/plugins/talk-plugin-profile-data/server/views/download.ejs
+++ b/plugins/talk-plugin-profile-data/server/views/download.ejs
@@ -16,7 +16,7 @@
<%= t('download_landing.information_included.body') %>
<%= t('download_landing.information_included.asset_url') %>
-
+
@@ -28,9 +28,11 @@
function showError(error) {
try {
let err = JSON.parse(error);
- $('.error-console').text(err.message).fadeIn();
+ $('.error-console span').text(err.message);
+ $('.error-console').fadeIn();
} catch (err) {
- $('.error-console').text(error).fadeIn();
+ $('.error-console span').text(error);
+ $('.error-console').fadeIn();
}
}
diff --git a/public/css/admin.css b/public/css/admin.css
index 0bad0a4c2..f6891c87e 100644
--- a/public/css/admin.css
+++ b/public/css/admin.css
@@ -3,6 +3,7 @@ body, #root {
height: 100%;
margin: 0;
background: #fff;
+ color: #3B4A53;
}
.container {
@@ -83,11 +84,18 @@ button[type="submit"] {
display: none;
margin-top: 10px;
border-radius: 2px;
- background-color: pink;
- color: red;
- border: 1px solid red;
+ background-color: rgba(242, 101, 99, 0.1);
+ border: 1px solid #F26563;
padding: 10px;
- font-size: 24px;
+}
+
+.error-console span:before {
+ font-family: 'Material Icons';
+ content: '\E000';
+ color: #000;
+ display: inline-block;
+ vertical-align: sub;
+ width: 1.4em;
}
ul.check_list {
diff --git a/views/account/email/confirm.ejs b/views/account/email/confirm.ejs
index 524b81ae9..47bc7773b 100644
--- a/views/account/email/confirm.ejs
+++ b/views/account/email/confirm.ejs
@@ -9,7 +9,7 @@
<%= t('confirm_email.email_confirmation') %>
<%= t('confirm_email.click_to_confirm') %>
-
+
@@ -21,9 +21,11 @@
function showError(error) {
try {
let err = JSON.parse(error);
- $('.error-console').text(err.message).fadeIn();
+ $('.error-console span').text(err.message);
+ $('.error-console').fadeIn();
} catch (err) {
- $('.error-console').text(error).fadeIn();
+ $('.error-console span').text(error);
+ $('.error-console').fadeIn();
}
}
diff --git a/views/account/password/reset.ejs b/views/account/password/reset.ejs
index fc8fd4d58..c8b106139 100644
--- a/views/account/password/reset.ejs
+++ b/views/account/password/reset.ejs
@@ -9,12 +9,12 @@
<%= t('password_reset.set_new_password') %>
<%= t('password_reset.change_password_help') %>
-
+