forked from lichess-org/lila
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_voicechat.scss
More file actions
55 lines (44 loc) · 739 Bytes
/
_voicechat.scss
File metadata and controls
55 lines (44 loc) · 739 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
@keyframes voicechat-glowing {
40% {
background: none;
}
50% {
background: $m-secondary_bg--mix-30;
}
60% {
background: $m-primary_bg--mix-30;
}
70% {
background: none;
}
}
.voicechat {
flex: 0 1 auto;
animation: voicechat-glowing 1.5s ease-in-out infinite;
&-slot {
animation: none;
opacity: 0.6;
&:hover {
opacity: 1;
}
}
&-off {
animation: none;
}
&-on {
background: $c-good;
color: $c-over;
animation: none;
&:hover {
background: $c-bad !important;
color: $c-over !important;
}
}
&::after {
@include inline-start(0);
@include inline-end(auto);
top: 1px;
background: none;
box-shadow: none;
}
}