You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
531 B
Plaintext
35 lines
531 B
Plaintext
8 years ago
|
/*** Messages stack ***/
|
||
|
|
||
|
#messagestack {
|
||
|
position: absolute;
|
||
|
bottom: 0.5em;
|
||
|
right: 0.5em;
|
||
|
z-index: 50000;
|
||
|
width: 320px;
|
||
|
height: auto;
|
||
|
max-height: 85%;
|
||
|
overflow-y: auto;
|
||
|
}
|
||
|
|
||
|
#messagestack div.voice {
|
||
|
position: absolute;
|
||
|
top: -1000px;
|
||
|
}
|
||
|
|
||
|
#messagestack div i.icon {
|
||
|
font-size: 2em !important;
|
||
|
}
|
||
|
|
||
|
#messagestack div a:hover {
|
||
|
text-decoration: underline;
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
|
||
|
|
||
|
@media screen and (max-width: 480px) {
|
||
|
#messagestack {
|
||
|
left: 0.5em;
|
||
|
width: auto;
|
||
|
}
|
||
|
}
|