- Doubled up :hover and :focus styling to improve a11y - Increase contrast of certain UI elements for improved a11y - Added some image alt text for a11y - Changed video caption styling to blue and made them underline on hover and added a skip link before video for screenreaders. Fixes Bugs: - LMS-1336
59 lines
894 B
SCSS
59 lines
894 B
SCSS
/* 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;
|
|
}
|