You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
264 lines
4.2 KiB
264 lines
4.2 KiB
.ui.chatroom {
|
|
background-color: #F8F8F8;
|
|
width: 330px;
|
|
height: 370px;
|
|
padding: 0;
|
|
}
|
|
|
|
.ui.chatroom .room {
|
|
position: relative;
|
|
background-color: #FFF;
|
|
overflow: hidden;
|
|
height: 286px;
|
|
border: 1px solid rgba(0,0,0,.1);
|
|
border-top: 0;
|
|
border-bottom: 0;
|
|
}
|
|
|
|
.ui.chatroom .room .loader {
|
|
display: none;
|
|
margin: -25px -25px 0 0;
|
|
}
|
|
|
|
.ui.chatroom .actions {
|
|
overflow: hidden;
|
|
background-color: #EEE;
|
|
padding: 4px;
|
|
border: 1px solid rgba(0,0,0,.1);
|
|
border-radius: 5px 5px 0 0;
|
|
}
|
|
|
|
.ui.chatroom .actions .button {
|
|
float: left;
|
|
margin-right: 3px;
|
|
}
|
|
|
|
.ui.chatroom .actions .message {
|
|
float: right;
|
|
margin-right: 6px;
|
|
font-size: 11px;
|
|
color: #AAA;
|
|
text-shadow: 0 -1px 0 rgba(255,255,255,.8);
|
|
line-height: 28px;
|
|
}
|
|
|
|
.ui.chatroom .actions .message .loader {
|
|
display: inline-block;
|
|
margin-left: 8px;
|
|
}
|
|
|
|
.ui.chatroom .log {
|
|
float: right;
|
|
overflow: auto;
|
|
overflow-x: hidden;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.ui.chatroom .log .message {
|
|
padding: 3px 0;
|
|
border-top: 1px dotted #DADADA;
|
|
}
|
|
|
|
.ui.chatroom .log .message:first-child {
|
|
border-top: 0;
|
|
}
|
|
|
|
.ui.chatroom .status {
|
|
padding: 5px 0;
|
|
color: #AAA;
|
|
font-size: 12px;
|
|
font-style: italic;
|
|
line-height: 1.33;
|
|
border-top: 1px dotted #DADADA;
|
|
}
|
|
|
|
.ui.chatroom .log .status:first-child {
|
|
border-top: 0;
|
|
}
|
|
|
|
.ui.chatroom .log .flag {
|
|
float: right;
|
|
}
|
|
|
|
.ui.chatroom .log p {
|
|
margin-right: 0;
|
|
}
|
|
|
|
.ui.chatroom .log .author {
|
|
font-weight: 700;
|
|
-webkit-transition: color .3s ease-out;
|
|
transition: color .3s ease-out;
|
|
}
|
|
|
|
.ui.chatroom .log a.author:hover {
|
|
opacity: .8;
|
|
}
|
|
|
|
.ui.chatroom .log .message.admin p {
|
|
font-weight: 700;
|
|
margin: 1px 23px 0 0;
|
|
}
|
|
|
|
.ui.chatroom .log .divider {
|
|
margin: -1px 0;
|
|
font-size: 11px;
|
|
padding: 10px 0;
|
|
border-top: 1px solid #F8F8F8;
|
|
border-bottom: 1px solid #F8F8F8;
|
|
}
|
|
|
|
.ui.chatroom .log .divider .rule {
|
|
top: 50%;
|
|
width: 15%;
|
|
}
|
|
|
|
.ui.chatroom .log .divider .label {
|
|
color: #777;
|
|
margin: 0;
|
|
}
|
|
|
|
.ui.chatroom .room .list {
|
|
position: relative;
|
|
overflow: auto;
|
|
overflow-x: hidden;
|
|
overflow-y: auto;
|
|
float: right;
|
|
background-color: #EEE;
|
|
border-right: 1px solid #DDD;
|
|
}
|
|
|
|
.ui.chatroom .room .list .user {
|
|
display: table;
|
|
padding: 3px 7px;
|
|
border-bottom: 1px solid #DDD;
|
|
}
|
|
|
|
.ui.chatroom .room .list .user:hover {
|
|
background-color: #F8F8F8;
|
|
}
|
|
|
|
.ui.chatroom .room .list .image {
|
|
display: table-cell;
|
|
vertical-align: middle;
|
|
width: 20px;
|
|
}
|
|
|
|
.ui.chatroom .room .list .image img {
|
|
width: 20px;
|
|
height: 20px;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.ui.chatroom .room .list p {
|
|
display: table-cell;
|
|
vertical-align: middle;
|
|
padding-right: 7px;
|
|
padding-left: 14px;
|
|
font-size: 11px;
|
|
line-height: 1.2;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.ui.chatroom .room .list a:hover {
|
|
opacity: .8;
|
|
}
|
|
|
|
.ui.chatroom.loading .loader {
|
|
display: block;
|
|
}
|
|
|
|
.ui.chatroom .talk {
|
|
border: 1px solid rgba(0,0,0,.1);
|
|
padding: 5px 0 0;
|
|
background-color: #EEE;
|
|
border-radius: 0 0 5px 5px;
|
|
}
|
|
|
|
.ui.chatroom .talk .avatar,
|
|
.ui.chatroom .talk input,
|
|
.ui.chatroom .talk .button {
|
|
float: right;
|
|
}
|
|
|
|
.ui.chatroom .talk .avatar img {
|
|
display: block;
|
|
width: 30px;
|
|
height: 30px;
|
|
margin-left: 4px;
|
|
border-radius: 500rem;
|
|
}
|
|
|
|
.ui.chatroom .talk input {
|
|
border: 1px solid #CCC;
|
|
margin: 0;
|
|
width: 196px;
|
|
height: 14px;
|
|
padding: 8px 5px;
|
|
font-size: 12px;
|
|
color: #555;
|
|
}
|
|
|
|
.ui.chatroom .talk input.focus {
|
|
border: 1px solid #AAA;
|
|
}
|
|
|
|
.ui.chatroom .send {
|
|
width: 80px;
|
|
height: 32px;
|
|
margin-right: -1px;
|
|
padding: 4px 12px;
|
|
font-size: 12px;
|
|
line-height: 23px;
|
|
-webkit-box-shadow: 0 0 0 1px rgba(0,0,0,.1) inset;
|
|
box-shadow: 0 0 0 1px rgba(0,0,0,.1) inset;
|
|
border-radius: 5px 0 0 5px;
|
|
}
|
|
|
|
.ui.chatroom .talk .log-in.button {
|
|
display: block;
|
|
float: none;
|
|
margin-top: -6px;
|
|
height: 22px;
|
|
border-radius: 0 0 4px 4px;
|
|
}
|
|
|
|
.ui.chatroom .talk .log-in.button i {
|
|
vertical-align: text-top;
|
|
}
|
|
|
|
.ui.chatroom .log .team.flag {
|
|
width: 18px;
|
|
}
|
|
|
|
.ui.chatroom.loading .loader {
|
|
display: block;
|
|
}
|
|
|
|
.ui.chatroom {
|
|
width: 330px;
|
|
height: 370px;
|
|
}
|
|
|
|
.ui.chatroom .room .container {
|
|
width: 3000px;
|
|
}
|
|
|
|
.ui.chatroom .log {
|
|
width: 314px;
|
|
height: 278px;
|
|
padding: 4px 7px;
|
|
}
|
|
|
|
.ui.chatroom .room .list {
|
|
width: 124px;
|
|
height: 278px;
|
|
padding: 4px 0;
|
|
}
|
|
|
|
.ui.chatroom .room .list .user {
|
|
width: 110px;
|
|
}
|
|
|
|
.ui.chatroom .talk {
|
|
height: 40px;
|
|
}
|