diff --git a/tests_hugo/chat_node/chat_client/style/msg_controls.css b/tests_hugo/chat_node/chat_client/style/msg_controls.css
index 1c06d22c..3fc745a8 100644
--- a/tests_hugo/chat_node/chat_client/style/msg_controls.css
+++ b/tests_hugo/chat_node/chat_client/style/msg_controls.css
@@ -1,3 +1,4 @@
+
.chat_item.controls_area {
flex-direction: row;
}
@@ -22,6 +23,7 @@
}
+
/* * * * * * * * * * * * * * * * * * * *
MENU APPEARENCE
*/
@@ -61,6 +63,28 @@
}
+
+/* * * * * * * * * * * * * * * * * * * *
+ DROP ARROW
+*/
+
+.drop_down ._title {
+ padding-right: 20px !important;
+}
+.drop_down ._title::after {
+ content: "";
+ position: absolute;
+ top: calc(50% - 4px);
+ right: 5px;
+ width: 0px;
+ height: 10px;
+
+ border: 5px solid transparent;
+ border-top: 10px solid rgb(120, 120, 120);
+}
+
+
+
/* * * * * * * * * * * * * * * * * * * *
SUB MENU APPEARENCE
*/
diff --git a/tests_hugo/chat_node/chat_client/style/msg_thread.css b/tests_hugo/chat_node/chat_client/style/msg_thread.css
index 5b3348e4..93cbb362 100644
--- a/tests_hugo/chat_node/chat_client/style/msg_thread.css
+++ b/tests_hugo/chat_node/chat_client/style/msg_thread.css
@@ -15,6 +15,12 @@
padding: 5px;
border-radius: 5px;
}
+
+
+/* * * * * * * * * * * * * *
+ ROOM NAME
+*/
+
.chat_box #msg_box_room_name {
position: absolute;
top: 0px;
@@ -24,6 +30,7 @@
margin: 0px;
padding: 2px 5px;
font-weight: bold;
+ color: rgb(120, 120, 120);
}