161 lines
3.1 KiB
CSS
161 lines
3.1 KiB
CSS
.ochat-panel-default {
|
|
box-shadow: 0 0 5px #999;
|
|
border-color: #ddd;
|
|
}
|
|
.chat-window{
|
|
z-index: 9999;
|
|
width: 310px;
|
|
}
|
|
#chat_window_2 .msg_container_base{
|
|
max-height: 400px ;
|
|
}
|
|
.icon_minim{
|
|
padding:2px 10px;
|
|
}
|
|
.msg_container_base{
|
|
margin: 0;
|
|
padding: 0 10px 10px;
|
|
max-height:300px;
|
|
overflow-x:hidden;
|
|
background-color: white;
|
|
}
|
|
.ochat-alert {
|
|
font-weight: 400;
|
|
padding: 15px;
|
|
margin-bottom: 18px;
|
|
border: 1px solid transparent;
|
|
border-radius: 0px;
|
|
}
|
|
.ochat-alert-info {
|
|
background-color: #5192F3;
|
|
border-color: #4B80C3;
|
|
color: #FFF;
|
|
}
|
|
.ochat-alert-warning {
|
|
background-color: #FE9126;
|
|
border-color: #E4752B;
|
|
color: #FFF;
|
|
}
|
|
.ochat-alert-success {
|
|
background-color: #92d097;
|
|
border-color: #48B151;
|
|
color: #FFF;
|
|
}
|
|
.ochat-footer {
|
|
display: table;
|
|
background-color: #F5F5F5;
|
|
border-top: 1px solid #DDD;
|
|
width: 100%;
|
|
padding: 15px;
|
|
}
|
|
.ochat-input-group-btn {
|
|
width: 1%;
|
|
white-space: nowrap;
|
|
vertical-align: middle;
|
|
display: table-cell;
|
|
}
|
|
textarea.ochat-form-control {
|
|
height: auto;
|
|
}
|
|
.ochat-form-group {
|
|
margin-bottom: 15px;
|
|
}
|
|
.ochat-form-control {
|
|
height: 32px;
|
|
color: black !important;
|
|
display: block !important;
|
|
width: 100% !important;
|
|
padding: 6px 12px !important;
|
|
font-size: 13px !important;
|
|
line-height: 1.42857 !important;
|
|
vertical-align: middle !important;
|
|
background-color: #FFF !important;
|
|
border: 1px solid #D6D4D4 !important;
|
|
border-radius: 0px !important;
|
|
}
|
|
.ochat-btn {
|
|
display: inline-block;
|
|
padding: 6px 12px;
|
|
margin-bottom: 0px;
|
|
font-size: 13px;
|
|
font-weight: normal;
|
|
line-height: 1.42857;
|
|
text-align: center;
|
|
vertical-align: middle;
|
|
cursor: pointer;
|
|
border: 1px solid transparent;
|
|
border-radius: 0px;
|
|
white-space: nowrap;
|
|
-moz-user-select: none;
|
|
}
|
|
.ochat-btn-primary {
|
|
background-color: #008abd;
|
|
border-color: #008abd;
|
|
color: white;
|
|
}
|
|
.ochat-disabled {
|
|
opacity: 0.3;
|
|
}
|
|
.offline-form{
|
|
margin: 0;
|
|
padding: 0 10px 10px;
|
|
}
|
|
.ochat-title{
|
|
white-space: nowrap;
|
|
margin-top: 0px!important;
|
|
margin-bottom: 0px!important;
|
|
font-size: 15px!important;
|
|
}
|
|
.ochat-panel-heading {
|
|
background: #666;
|
|
color: white;
|
|
padding: 10px;
|
|
position: relative;
|
|
overflow: hidden;
|
|
border-color: white; !important;
|
|
}
|
|
.ochat-pull-right {
|
|
float: right;
|
|
}
|
|
.msg_receive{
|
|
padding-left:0;
|
|
margin-left:0;
|
|
}
|
|
.msg_sent{
|
|
margin-right:0;
|
|
}
|
|
.messages {
|
|
background: white;
|
|
padding: 10px;
|
|
border-radius: 2px;
|
|
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
|
|
max-width:100%;
|
|
}
|
|
.messages > p {
|
|
font-size: 13px;
|
|
margin: 0 0 0.2rem 0;
|
|
}
|
|
.messages > time {
|
|
font-size: 11px;
|
|
}
|
|
.msg_container {
|
|
padding: 10px;
|
|
overflow: hidden;
|
|
display: flex;
|
|
}
|
|
.base_sent {
|
|
justify-content: flex-end;
|
|
align-items: flex-end;
|
|
}
|
|
#chat_window_1 .ochat-time{
|
|
margin-bottom: 0;
|
|
}
|
|
#chat_window_1 .ochat-time-sent{
|
|
float: right;
|
|
}
|
|
#chat_window_1 .ochat-panel-heading :hover{
|
|
cursor: pointer;
|
|
}
|
|
#chat_window_2 .ochat-panel-heading :hover{
|
|
cursor: pointer;
|
|
} |