diff --git a/tests_hugo/chat_node/chat_client/chat_test_layouts.js b/tests_hugo/chat_node/chat_client/_test_layouts.js similarity index 100% rename from tests_hugo/chat_node/chat_client/chat_test_layouts.js rename to tests_hugo/chat_node/chat_client/_test_layouts.js diff --git a/tests_hugo/chat_node/chat_client/chat.html b/tests_hugo/chat_node/chat_client/chat.html index 98c8b220..4af28460 100644 --- a/tests_hugo/chat_node/chat_client/chat.html +++ b/tests_hugo/chat_node/chat_client/chat.html @@ -4,7 +4,7 @@ - + diff --git a/tests_hugo/chat_node/chat_client/style/_action_board.css b/tests_hugo/chat_node/chat_client/style/_action_board.css deleted file mode 100644 index 5afc8801..00000000 --- a/tests_hugo/chat_node/chat_client/style/_action_board.css +++ /dev/null @@ -1,78 +0,0 @@ - -.chat._item.main_window .action_board { - position: absolute; - top: 0px; - left: 0px; - width: 100%; - height: 100%; - overflow: hidden; - background-color: transparent; - pointer-events: none; -} -.chat._item.main_window .action_board .action_pannel { - /* - display: none; - visibility: hidden; - */ - opacity: 0; - background-color: white; - pointer-events: none; -} -/* style the close croice */ -label.close_croice { - position: absolute; - top: 0px; - right: 0px; - width: 30px; - height: 30px; - cursor: pointer; -} -label.close_croice::before, -label.close_croice::after { - content: ""; - position: absolute; - top: 50%; - left: 50%; - width: 20px; - height: 1px; - background-color: black; -} -label.close_croice::before { - transform: translate(-50%, -50%) rotate(45deg); -} -label.close_croice::after { - transform: translate(-50%, -50%) rotate(-45deg); -} - - -/* * * * * * * * * * * * * * - DIRECT MESSAGES -*/ - -/* show action board and _create */ -input#new_room_form:focus ~ #chat_box #action_board ._create, -#action_board ._create:focus-within { - /* - display: flex; - visibility: visible; - */ - opacity: 1; - pointer-events: auto; -} - -/* settings */ -#action_board ._create { - height: 100%; -} -#action_board ._create ._title { - text-align: center; -} -#action_board ._create ._search { - position: sticky; - top: 0px; - margin: 10px; -} -#action_board ._create ._list { - border: 1px solid red; -} - diff --git a/tests_hugo/chat_node/chat_client/style/_chat_controls.css b/tests_hugo/chat_node/chat_client/style/_chat_controls.css deleted file mode 100644 index ca5dc5d8..00000000 --- a/tests_hugo/chat_node/chat_client/style/_chat_controls.css +++ /dev/null @@ -1,24 +0,0 @@ - -.chat._item.controls_area { - flex-direction: row; -} -.chat._item.controls_area .control { - margin: auto; - cursor: pointer; -} -.chat._item.controls_area .control p { - margin: 0px; - padding: 5px; - cursor: pointer; -} -.chat._item.controls_area .control label { - margin: 0px; - padding: 0px; -} -.chat._item.controls_area .control p:hover { - background-color: rgb(210, 210, 210); -} -.chat._item.controls_area .control p:active { - background-color: rgb(180, 180, 180); -} - 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 f1585721..aeed2481 100644 --- a/tests_hugo/chat_node/chat_client/style/chat_write.css +++ b/tests_hugo/chat_node/chat_client/style/chat_write.css @@ -1,8 +1,9 @@ -.chat_item#chat_panel_write { - border: 1px solid black; +#chat_box .chat_item#chat_panel_write { + border: none; + overflow: visible; } -.chat_item#chat_panel_write .text_area { +#chat_box .chat_item#chat_panel_write .text_area { display: block; position: absolute; bottom: 0px; @@ -17,7 +18,8 @@ overflow-x: hidden; overflow-y: scroll; background-color: white; + border: 1px solid black; } -.chat_item#chat_panel_write .text_area div { +#chat_box .chat_item#chat_panel_write .text_area div { display: block ruby; }