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.
66 lines
1.1 KiB
Plaintext
66 lines
1.1 KiB
Plaintext
/*** 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;
|
|
}
|
|
|
|
.ui.alert {
|
|
margin: 0;
|
|
margin-bottom: 0.2em;
|
|
opacity: 0.95;
|
|
float: left;
|
|
width: 100%;
|
|
padding-left: 0.75em;
|
|
}
|
|
|
|
.ui.alert > i.icon:before {
|
|
&:extend(.font-icon-class);
|
|
height: 1em;
|
|
width: 1em;
|
|
line-height: 1em;
|
|
content: @fa-var-info-circle;
|
|
}
|
|
|
|
.ui.alert.loading > i.icon:before {
|
|
content: @fa-var-circle-o-notch;
|
|
-webkit-animation: fa-spin 2s infinite linear;
|
|
animation: fa-spin 2s infinite linear;
|
|
}
|
|
|
|
.ui.alert.alert-warning > i.icon:before {
|
|
content: @fa-var-warning;
|
|
}
|
|
|
|
.ui.alert.alert-danger > i.icon:before {
|
|
content: @fa-var-exclamation-circle;
|
|
}
|
|
|
|
|
|
@media screen and (max-width: 480px) {
|
|
#messagestack {
|
|
left: 0.5em;
|
|
width: auto;
|
|
}
|
|
}
|