mirror of https://github.com/movim/movim
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.
46 lines
777 B
46 lines
777 B
#chat_widget .chat_box {
|
|
position: fixed;
|
|
bottom: 0;
|
|
background-color: white;
|
|
width: 70%;
|
|
max-width: 100%;
|
|
border-top: 1px solid rgba(0, 0, 0, 0.12);
|
|
}
|
|
|
|
#chat_widget .chat_box ul {
|
|
margin: 0 auto;
|
|
max-width: 100rem;
|
|
}
|
|
|
|
#chat_widget .chat_box form {
|
|
width: calc(100% - 1rem);
|
|
}
|
|
|
|
#chat_widget .chat_box form > div {
|
|
min-height: 0;
|
|
margin-bottom: -1rem;
|
|
}
|
|
|
|
#chat_widget .chat_box form textarea {
|
|
padding: 3rem 0px 1rem;
|
|
}
|
|
|
|
#chat_widget .chat_box div.action {
|
|
font-size: 4rem;
|
|
color: gray;
|
|
}
|
|
|
|
#chat_widget .chat_box div.action:hover {
|
|
cursor: pointer;
|
|
color: #333;
|
|
}
|
|
|
|
#chat_widget section {
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
@media screen and (max-width: 1024px) {
|
|
#chat_widget .chat_box {
|
|
width: 100%;
|
|
}
|
|
}
|