diff --git a/tests_hugo/chat_node/chat_client/chat.html b/tests_hugo/chat_node/chat_client/chat.html
index 10c0d98f..dbcb6632 100644
--- a/tests_hugo/chat_node/chat_client/chat.html
+++ b/tests_hugo/chat_node/chat_client/chat.html
@@ -42,12 +42,11 @@
--------------------------------- -->
-
-
-
/ you have no chat room yet /
+
list of your rooms :
+
+
+
/ you have no chat room yet /
-
@@ -57,7 +56,8 @@
-
+
@@ -77,8 +77,7 @@
diff --git a/tests_hugo/chat_node/chat_client/style/chat.css b/tests_hugo/chat_node/chat_client/style/chat.css
index ff64c615..511b3ef4 100644
--- a/tests_hugo/chat_node/chat_client/style/chat.css
+++ b/tests_hugo/chat_node/chat_client/style/chat.css
@@ -1,4 +1,8 @@
+/*
+cxv
+*/
+
@import 'chat__global.css';
@import 'layout_close.css';
diff --git a/tests_hugo/chat_node/chat_client/style/chat__global.css b/tests_hugo/chat_node/chat_client/style/chat__global.css
index 73e651a7..c3831d33 100644
--- a/tests_hugo/chat_node/chat_client/style/chat__global.css
+++ b/tests_hugo/chat_node/chat_client/style/chat__global.css
@@ -6,12 +6,12 @@
font-size: 15px;
}
-/* show first child only if it's alone
+/* show child only if it's alone
*/
-#chat_box .__first_child_vanish > *#chat_home_no_room_yet {
+#chat_box .__show_if_only_child {
display: none;
}
-#chat_box .__first_child_vanish > *#chat_home_no_room_yet:only-child {
+#chat_box .__show_if_only_child:only-child {
display: flex;
color: rgb(100, 100, 100);
}
@@ -22,3 +22,16 @@
#chat_box .chat_item.chat_panel {
border-top: 1px solid black;
}
+
+
+/* text center
+*/
+#chat_box p.__center {
+ text-align: center;
+}
+
+#chat_box .chat_item > * {
+ margin: 0px;
+}
+
+
diff --git a/tests_hugo/chat_node/chat_client/style/chat_room_list.css b/tests_hugo/chat_node/chat_client/style/chat_room_list.css
index b3b8e091..76be66d7 100644
--- a/tests_hugo/chat_node/chat_client/style/chat_room_list.css
+++ b/tests_hugo/chat_node/chat_client/style/chat_room_list.css
@@ -1,9 +1,9 @@
/* chat home rooms list
-*/
#chat_box .chat_item#chat_panel_home #chat_room_list {
margin-top: 0px;
}
+*/
#chat_box #chat_panel_home .chat_room_name {
margin: 0px;
@@ -15,7 +15,6 @@
}
#chat_box #chat_panel_home .chat_room_name p {
- margin: 0px;
- text-align: start;
+ margin-left: 0px;
}
diff --git a/tests_hugo/chat_node/chat_client/style/chat_write.css b/tests_hugo/chat_node/chat_client/style/chat_write.css
index 6fdae42d..f1585721 100644
--- a/tests_hugo/chat_node/chat_client/style/chat_write.css
+++ b/tests_hugo/chat_node/chat_client/style/chat_write.css
@@ -1,3 +1,7 @@
+
+.chat_item#chat_panel_write {
+ border: 1px solid black;
+}
.chat_item#chat_panel_write .text_area {
display: block;
position: absolute;
@@ -13,7 +17,6 @@
overflow-x: hidden;
overflow-y: scroll;
background-color: white;
- border: 1px solid black;
}
.chat_item#chat_panel_write .text_area div {
display: block ruby;
diff --git a/tests_hugo/chat_node/chat_client/style/layout_new.css b/tests_hugo/chat_node/chat_client/style/layout_new.css
index 3ec8c06a..3b75c295 100644
--- a/tests_hugo/chat_node/chat_client/style/layout_new.css
+++ b/tests_hugo/chat_node/chat_client/style/layout_new.css
@@ -21,3 +21,8 @@
pointer-events: none;
}
+#chat_box.new .chat_item button#create_new_room_btn {
+ margin: 10px 0px;
+}
+
+