diff --git a/public_html/css/container.css b/public_html/css/container.css
index 35923eb..66f9fca 100644
--- a/public_html/css/container.css
+++ b/public_html/css/container.css
@@ -62,7 +62,7 @@
display: none;
}
- #CONTAINER.message div span span{ /* Code block */
+ #CONTAINER.message div span span.code{ /* Code block */
display: inline-block;
position: relative;
@@ -74,10 +74,19 @@
font-family: 'Liberation Mono';
font-size: .9em;
- text-anchor: end;
}
+ #CONTAINER.message div span span.utf8{ /* Smileys */
+ font-family: 'Liberation Mono';
+ font-size: 1.3em;
+
+ color: #ea921f;
+ }
+
+ #CONTAINER.message div span span.utf8.bl{ color: #338be0; }
+ #CONTAINER.message div span span.utf8.br{ color: #773c22; }
+
#CONTAINER.message form.msg-input{ /* Message Input */
display: block;
diff --git a/view/vue/container/inbox.vue b/view/vue/container/inbox.vue
index c591584..62376c9 100644
--- a/view/vue/container/inbox.vue
+++ b/view/vue/container/inbox.vue
@@ -53,29 +53,29 @@ export default {
msg = msg.replace(/\[([^\]]+)\]/g, "$1");
/* (4) Code */
- msg = msg.replace(/`([^`]+)`/g, "$1");
+ msg = msg.replace(/`([^`]+)`/g, "$1");
/* (3) Manage emojis
---------------------------------------------------------*/
/* (1) Smileys */
- msg = msg.replace(/:D/g, '😃');
- msg = msg.replace(/:\)/g, '🙂');
- msg = msg.replace(/:B/g, '😎');
- msg = msg.replace(/:3/g, '😗');
- msg = msg.replace(/;\)/g, '😉');
- msg = msg.replace(/:P/g, '😋');
- msg = msg.replace(/;P/g, '😜');
- msg = msg.replace(/xD/g, '😆');
- msg = msg.replace(/:O/ig, '😲');
- msg = msg.replace(/:S/g, '😖');
- msg = msg.replace(/\^\^/g, '😊');
+ msg = msg.replace(/:D/g, "😃");
+ msg = msg.replace(/:\)/g, "🙂");
+ msg = msg.replace(/:B/g, "😎");
+ msg = msg.replace(/:3/g, "😗");
+ msg = msg.replace(/;\)/g, "😉");
+ msg = msg.replace(/:P/g, "😋");
+ msg = msg.replace(/;P/g, "😜");
+ msg = msg.replace(/xD/g, "😆");
+ msg = msg.replace(/:O/ig, "😲");
+ msg = msg.replace(/:S/g, "😖");
+ msg = msg.replace(/\^\^/g, "😊");
/* (2) Emojis */
- msg = msg.replace(/:poop:/g, '💩');
- msg = msg.replace(/:fuck:/g, '🖕');
- msg = msg.replace(/\+1/g, '👍');
- msg = msg.replace(/-1/g, '👎');
+ msg = msg.replace(/:poop:/g, "💩");
+ msg = msg.replace(/:fuck:/g, "🖕");
+ msg = msg.replace(/\+1/g, "👍");
+ msg = msg.replace(/-1/g, "👎");
return msg;
}