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

162 lines
4 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;
2021-02-16 07:21:22 +00:00
border-bottom: 1px solid @border-toolbar-ie;
2020-12-19 19:43:19 +00:00
border-bottom: 1px solid @border-toolbar;
2016-03-11 00:48:53 +00:00
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;
2021-02-16 07:21:22 +00:00
border: 1px solid @border-toolbar-ie;
2020-12-19 19:43:19 +00:00
border: 1px solid @border-toolbar;
2016-03-11 00:48:53 +00:00
}
.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 {
2021-02-16 07:21:22 +00:00
color: @text-normal-ie;
2020-12-19 19:43:19 +00:00
color: @text-normal;
2018-06-01 07:51:09 +00:00
font-size: 12px;
font-weight: bold;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.color {
width: 12px;
height: 12px;
2021-02-16 07:21:22 +00:00
border: 1px solid @border-toolbar-ie;
2020-12-19 19:43:19 +00:00
border: 1px solid @border-toolbar;
2018-06-01 07:51:09 +00:00
margin: 0 5px 3px 0;
vertical-align: middle;
}
2016-03-11 00:48:53 +00:00
.message {
word-wrap: break-word;
width: 100%;
2021-03-09 21:46:55 +00:00
&.user-select {
cursor: text;
}
//&.service {
// text-align: center;
// color: #CECECE;
// text-shadow: 0 1px 0 #fff;
// padding-right: 20px;
//}
2016-03-11 00:48:53 +00:00
}
}
}
}
#chat-options {
#chat-options-ct {
padding: 10px 20px 40px 20px;
height: 100%;
}
textarea {
width: 100%;
height: 100%;
resize: none;
margin-bottom: 5px;
2021-02-16 07:21:22 +00:00
border: 1px solid @border-regular-control-ie;
border: 1px solid @border-regular-control;
2018-03-20 14:00:08 +00:00
font-size: 12px;
&:focus {
border-color: @border-control-focus-ie;
border-color: @border-control-focus;
}
2016-03-11 00:48:53 +00:00
}
}
}