Co-Authored-By: Jean-Michel Claus <jmc@edx.org> Co-Authored-By: Brian Talbot <btalbot@edx.org> Co-Authored-By: Tim Babych <tim@edx.org> Co-Authored-By: Oleg Marshev <oleg@edx.org> Co-Authored-By: Chris Rodriguez <crodriguez@edx.org>
59 lines
882 B
SCSS
59 lines
882 B
SCSS
// LMS -- modules -- chat
|
|
// ====================
|
|
#chat-wrapper {
|
|
position: fixed;
|
|
bottom: 0;
|
|
left: 0;
|
|
z-index: 1000;
|
|
}
|
|
|
|
#chat-toggle {
|
|
position: absolute;
|
|
left: 0;
|
|
top: -45px;
|
|
height: 25px;
|
|
width: 170px;
|
|
padding: 10px 15px;
|
|
background: #333;
|
|
border-top-right-radius: 10px;
|
|
|
|
span {
|
|
color: #dcdcdc;
|
|
font-weight: bold;
|
|
font-size: 18px;
|
|
}
|
|
cursor: pointer;
|
|
}
|
|
|
|
#chat-toggle:hover,
|
|
#chat-toggle:focus {
|
|
text-decoration: none;
|
|
}
|
|
|
|
#chat-open {
|
|
display: inline;
|
|
}
|
|
|
|
#chat-close {
|
|
display: none;
|
|
}
|
|
|
|
#chat-toggle em {
|
|
position: absolute;
|
|
right: 20px;
|
|
top: 12px;
|
|
font-size: 28px !important;
|
|
}
|
|
|
|
#chat-block {
|
|
position: relative;
|
|
float: left;
|
|
width: 600px;
|
|
height: 0px;
|
|
bottom: 0;
|
|
right: 0;
|
|
margin: 0 !important;
|
|
border: none !important;
|
|
display: none;
|
|
}
|