added arrow to drop menu
This commit is contained in:
@@ -16,7 +16,7 @@
|
|||||||
|
|
||||||
<div class="chat_item controls_area">
|
<div class="chat_item controls_area">
|
||||||
<!-- MENU -------------- -->
|
<!-- MENU -------------- -->
|
||||||
<div class="control list drop_down">
|
<div class="control rooms drop_down">
|
||||||
<p class="_title" tabindex=0>rooms</p>
|
<p class="_title" tabindex=0>rooms</p>
|
||||||
<div class="_items" tabindex=0 id="rooms">
|
<div class="_items" tabindex=0 id="rooms">
|
||||||
<label for="input_outside"><p class="room_name">test1</p></label>
|
<label for="input_outside"><p class="room_name">test1</p></label>
|
||||||
@@ -60,7 +60,7 @@
|
|||||||
<div class="msg_box" id="msg_thread">
|
<div class="msg_box" id="msg_thread">
|
||||||
<!-- messages go there -->
|
<!-- messages go there -->
|
||||||
</div>
|
</div>
|
||||||
<p id="msg_box_room_name">test</p>
|
<p id="msg_box_room_name">room name</p>
|
||||||
<!-- ACTION BOARD ------ -->
|
<!-- ACTION BOARD ------ -->
|
||||||
<div class="action_board" id="action_board">
|
<div class="action_board" id="action_board">
|
||||||
<div class="action_pannel _create" id="create" tabindex=0>
|
<div class="action_pannel _create" id="create" tabindex=0>
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
|
||||||
.chat_item.controls_area {
|
.chat_item.controls_area {
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
}
|
}
|
||||||
@@ -22,6 +23,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * *
|
||||||
MENU APPEARENCE
|
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
|
SUB MENU APPEARENCE
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -15,6 +15,12 @@
|
|||||||
padding: 5px;
|
padding: 5px;
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* * * * * * * * * * * * * *
|
||||||
|
ROOM NAME
|
||||||
|
*/
|
||||||
|
|
||||||
.chat_box #msg_box_room_name {
|
.chat_box #msg_box_room_name {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 0px;
|
top: 0px;
|
||||||
@@ -24,6 +30,7 @@
|
|||||||
margin: 0px;
|
margin: 0px;
|
||||||
padding: 2px 5px;
|
padding: 2px 5px;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
|
color: rgb(120, 120, 120);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user