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

133 lines
2.9 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 {
2018-03-23 14:15:42 +00:00
position: absolute;
top: 0;
left: 0;
margin-top: 1px;
2016-03-11 00:48:53 +00:00
width: 12px;
height: 12px;
border: 1px solid @gray-dark;
}
.name {
display: block;
2018-03-23 14:15:42 +00:00
position: relative;
padding: 0 10px 0 16px;
2016-03-11 00:48:53 +00:00
margin-top: -2px;
white-space: nowrap;
text-overflow: ellipsis;
2018-03-23 14:15:42 +00:00
overflow: hidden;
2016-03-11 00:48:53 +00:00
font-weight: bold;
}
}
#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
}
.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
}
}
}