2021-10-06 12:45:54 +01:00
|
|
|
body {
|
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
|
|
}
|
|
|
|
|
|
|
|
.page {
|
|
|
|
max-width: 960px;
|
|
|
|
margin: 0 auto;
|
2021-10-06 13:20:26 +01:00
|
|
|
display: flex;
|
|
|
|
height: 100%;
|
2021-10-06 12:45:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.header {
|
|
|
|
margin: 5px;
|
|
|
|
}
|
|
|
|
|
2022-02-24 15:03:10 +00:00
|
|
|
.statsheader {
|
2022-02-22 18:24:35 +00:00
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
#txrx {
|
|
|
|
background-color: black;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
2021-10-06 13:20:26 +01:00
|
|
|
.leftSide {
|
|
|
|
display: flex;
|
2021-10-06 12:45:54 +01:00
|
|
|
background: #f7f7f7;
|
2021-10-06 13:20:26 +01:00
|
|
|
flex-direction: column;
|
|
|
|
height: 100%;
|
|
|
|
width: 50%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.rightSide {
|
2021-10-07 10:28:53 +01:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2021-10-06 13:20:26 +01:00
|
|
|
margin: 5px;
|
|
|
|
background: #f7f7f7;
|
|
|
|
height: 100%;
|
|
|
|
width: 50%;
|
2021-10-06 12:45:54 +01:00
|
|
|
}
|
|
|
|
|
2022-02-24 15:03:10 +00:00
|
|
|
#roomlistcontainer {
|
2021-11-10 18:13:04 +00:00
|
|
|
max-height: 100%;
|
|
|
|
display: grid;
|
|
|
|
}
|
|
|
|
|
2021-10-07 10:28:53 +01:00
|
|
|
#messages {
|
|
|
|
overflow: scroll;
|
|
|
|
}
|
|
|
|
|
2021-10-06 12:45:54 +01:00
|
|
|
.roomlist {
|
|
|
|
overflow: scroll;
|
|
|
|
background: #f7f7f7;
|
2021-11-10 18:13:04 +00:00
|
|
|
}
|
|
|
|
|
2021-11-11 13:00:32 +00:00
|
|
|
.roomlistwrapper {
|
2021-11-10 18:13:04 +00:00
|
|
|
overflow: scroll;
|
|
|
|
background: #f7f7f7;
|
2021-11-11 13:00:32 +00:00
|
|
|
border-left: 1px solid #8d99a5;
|
|
|
|
border-right: 1px solid #8d99a5;
|
|
|
|
}
|
|
|
|
|
2022-02-24 15:03:10 +00:00
|
|
|
.roomlistname {
|
2021-11-11 13:00:32 +00:00
|
|
|
position: sticky;
|
|
|
|
top: 0;
|
|
|
|
background: #8d99a5;
|
|
|
|
text-align: center;
|
|
|
|
padding: 2px;
|
|
|
|
color: #fff;
|
2021-10-06 12:45:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.roomcell {
|
|
|
|
padding: 5px;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
cursor: pointer;
|
|
|
|
border-bottom: 1px solid #8d99a5;
|
|
|
|
height: 40px;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.roomavatar {
|
|
|
|
width: 32px;
|
|
|
|
height: 32px;
|
|
|
|
margin-right: 6px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.roomtimestamp {
|
|
|
|
color: #737d8c;
|
|
|
|
font-size: small;
|
|
|
|
}
|
|
|
|
|
|
|
|
.roomsender {
|
|
|
|
color: #737d8c;
|
|
|
|
font-size: small;
|
|
|
|
}
|
|
|
|
|
|
|
|
.roomcontent {
|
|
|
|
font-size: small;
|
|
|
|
}
|
|
|
|
|
2021-10-08 14:35:14 +01:00
|
|
|
.unreadcountnotify {
|
|
|
|
background: #d0d0d0;
|
|
|
|
padding: 2px;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
.unreadcounthighlight {
|
2021-10-08 14:53:23 +01:00
|
|
|
background: #f33;
|
|
|
|
color: #fff;
|
2021-10-08 14:35:14 +01:00
|
|
|
padding: 2px;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2021-10-06 14:03:22 +01:00
|
|
|
.msgheader {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
|
|
|
margin: 5px 5px 0px 5px;
|
|
|
|
}
|
|
|
|
|
2021-10-06 12:45:54 +01:00
|
|
|
.msgsender {
|
2021-10-06 14:03:22 +01:00
|
|
|
color: #737d8c;
|
|
|
|
font-size: small;
|
|
|
|
}
|
|
|
|
|
|
|
|
.msgtimestamp {
|
|
|
|
color: #737d8c;
|
|
|
|
font-size: x-small;
|
2021-10-06 12:45:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.msgcontent {
|
|
|
|
font-size: small;
|
2021-10-07 17:43:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#selectedroomtopic {
|
|
|
|
font-size: x-small;
|
2022-02-24 15:03:10 +00:00
|
|
|
border: 1px solid;
|
|
|
|
padding: 5px;
|
|
|
|
}
|
2022-02-24 15:55:32 +00:00
|
|
|
|
|
|
|
#roomfooter {
|
|
|
|
margin: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#sendmessageinput {
|
|
|
|
width: 100%;
|
|
|
|
}
|