Add early search prototype on the client, add leave button
This commit is contained in:
parent
deba58dbff
commit
7aae7685c5
19 changed files with 297 additions and 60 deletions
10
client/src/css/fontello.css
vendored
10
client/src/css/fontello.css
vendored
|
@ -49,6 +49,12 @@
|
|||
/* Uncomment for 3D effect */
|
||||
/* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
|
||||
}
|
||||
|
||||
.icon-cog:before { content: '\e800'; } /* '' */
|
||||
.icon-ellipsis:before { content: '\e801'; } /* '' */
|
||||
.icon-ellipsis:before { content: '\e801'; } /* '' */
|
||||
.icon-search:before { content: '\e802'; } /* '' */
|
||||
.icon-user:before { content: '\e803'; } /* '' */
|
||||
.icon-users:before { content: '\e804'; } /* '' */
|
||||
.icon-logout:before { content: '\e805'; } /* '' */
|
||||
.icon-menu:before { content: '\e806'; } /* '' */
|
||||
.icon-plus:before { content: '\e807'; } /* '' */
|
||||
.icon-cancel:before { content: '\e808'; } /* '' */
|
|
@ -86,9 +86,8 @@ i[class^="icon-"]:before, i[class*=" icon-"]:before {
|
|||
|
||||
.side-buttons i {
|
||||
color: #999;
|
||||
margin: 5px;
|
||||
margin: 25px;
|
||||
line-height: 40px;
|
||||
width: 40px;
|
||||
cursor: pointer;
|
||||
font-size: 20px;
|
||||
}
|
||||
|
@ -171,38 +170,75 @@ i[class^="icon-"]:before, i[class*=" icon-"]:before {
|
|||
position: fixed;
|
||||
left: 200px;
|
||||
top: 0;
|
||||
right: 0;
|
||||
right: 200px;
|
||||
height: 50px;
|
||||
padding: 0 15px;
|
||||
padding-left: 15px;
|
||||
line-height: 50px;
|
||||
border-bottom: 1px solid #DDD;
|
||||
display: flex;
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
.chat-title-bar div {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
right: 100px;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
.chat-title-bar i {
|
||||
padding: 0 15px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.button-leave {
|
||||
border-left: 1px solid #DDD;
|
||||
}
|
||||
|
||||
.button-leave:hover {
|
||||
background: #DDD;
|
||||
}
|
||||
|
||||
.chat-title {
|
||||
margin-left: 15px;
|
||||
font-size: 28px;
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.chat-topic {
|
||||
display: none;
|
||||
font: 16px Droid Sans Mono, monospace;
|
||||
.userlist-bar {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
right: 0;
|
||||
width: 200px;
|
||||
height: 50px;
|
||||
border-left: 1px solid #DDD;
|
||||
border-bottom: 1px solid #DDD;
|
||||
line-height: 50px;
|
||||
vertical-align: top;
|
||||
color: #222;
|
||||
margin-left: 15px;
|
||||
text-align: center;
|
||||
padding: 0 15px;
|
||||
font-family: Montserrat, sans-serif;
|
||||
}
|
||||
|
||||
.chat-usercount {
|
||||
font-size: 20px;
|
||||
float: right;
|
||||
.userlist-bar i {
|
||||
margin-right: 3px;
|
||||
}
|
||||
|
||||
.search {
|
||||
display: none;
|
||||
position: fixed;
|
||||
left: 200px;
|
||||
top: 50px;
|
||||
bottom: 50px;
|
||||
right: 200px;
|
||||
z-index: 2;
|
||||
background: #f0f0f0;
|
||||
}
|
||||
|
||||
.search-input {
|
||||
width: 100%;
|
||||
padding: 15px;
|
||||
border-bottom: 1px solid #DDD;
|
||||
}
|
||||
|
||||
.search-results {
|
||||
position: absolute;
|
||||
top: 50px;
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
overflow: auto;
|
||||
padding: 10px 15px;
|
||||
}
|
||||
|
||||
.messagebox {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue