web-apps/apps/common/main/resources/less/chat.less

150 lines
3.5 KiB
Plaintext
Raw Normal View History

2016-03-11 00:48:53 +00:00
#chat-box {
display: table;
position: relative;
width: 100%;
height: 100%;
border-collapse: collapse;
> div {
display: table-row;
}
.area {
position: absolute;
border-bottom: 1px solid @gray-dark;
overflow: hidden;
}
.ps-scrollbar-y-rail {
margin-top: 5px;
margin-bottom: 5px;
right: 4px !important;
}
#chat-title {
label {
padding: 18px 20px;
font-size: @font-size-large;
}
}
#chat-users {
left: 0;
top: 0;
right: 0;
height: 70px;
padding: 5px 0;
ul {
margin: 0;
padding: 0;
overflow: hidden;
li {
list-style: none;
padding: 2px 0 2px 20px;
overflow: hidden;
&.offline {
display: none;
}
}
}
.color {
display: inline-block;
vertical-align: middle;
margin: 0 5px 3px 0;
2016-03-11 00:48:53 +00:00
width: 12px;
height: 12px;
border: 1px solid @gray-dark;
}
.name {
2018-06-01 07:51:09 +00:00
font-size: 12px;
2018-06-05 09:53:02 +00:00
font-weight: bold;
2016-03-11 00:48:53 +00:00
display: block;
padding: 0 10px 0 0;
2016-03-11 00:48:53 +00:00
white-space: nowrap;
text-overflow: ellipsis;
2018-03-23 14:15:42 +00:00
overflow: hidden;
line-height: normal;
height: 16px;
2016-03-11 00:48:53 +00:00
}
}
#chat-messages {
left: 0;
top: 70px;
right: 0;
bottom: 110px;
2018-03-20 14:00:08 +00:00
font-size: 12px;
2016-03-11 00:48:53 +00:00
ul {
margin: 0;
padding: 0;
li {
list-style: none;
padding: 5px 10px 8px 20px;
white-space: pre-wrap;
white-space: -moz-pre-wrap;
white-space: -o-pre-wrap;
word-wrap: break-word;
.user {
font-weight: bold;
white-space: nowrap;
2018-03-23 14:15:42 +00:00
overflow: hidden;
text-overflow: ellipsis;
2016-03-11 00:48:53 +00:00
}
2018-06-01 07:51:09 +00:00
.user-name {
color: @gray-deep;
font-size: 12px;
font-weight: bold;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.color {
width: 12px;
height: 12px;
border: 1px solid @gray-dark;
margin: 0 5px 3px 0;
vertical-align: middle;
}
2016-03-11 00:48:53 +00:00
.message {
word-wrap: break-word;
width: 100%;
&.service {
text-align: center;
color: #CECECE;
text-shadow: 0 1px 0 #fff;
padding-right: 20px;
}
}
}
}
}
#chat-options {
#chat-options-ct {
padding: 10px 20px 40px 20px;
height: 100%;
}
textarea {
width: 100%;
height: 100%;
resize: none;
margin-bottom: 5px;
border: 1px solid @gray-dark;
2018-03-20 14:00:08 +00:00
font-size: 12px;
2016-03-11 00:48:53 +00:00
}
}
}