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
56
57
58
59
60
61
62
63
64
65
66
67
68
| .player {
| width: 100%;
| height: 32px;
| display: flex;
| cursor: default;
| min-width: 240px;
| border-radius: 4px;
| align-items: center;
| background-color: var(--color-neutral-background);
| box-shadow: 0 0 0 1px var(--color-neutral-border) inset, 0 2px 4px rgba(var(--color-neutral-shadow-raw) / 8%);
|
| video {
| width: 140px;
| height: 50px;
| border-radius: 4px 0 0 4px;
| }
|
| &_video {
| height: 50px;
| }
|
| &__playback {
| width: 100%;
| height: 100%;
| display: flex;
| flex-direction: column;
| }
|
| &__controls {
| flex: 1;
| height: 27px;
| }
|
| &__play {
| width: 24px;
| height: 24px;
| display: flex;
| cursor: pointer;
| align-items: center;
| justify-content: center;
| color: var(--color-primary-icon);
| }
|
| &__track,
| &__time {
| font-size: 12px;
| color: var(--color-neutral-content-subtler);
| }
|
| &__track {
| white-space: nowrap;
| overflow: hidden;
| text-overflow: ellipsis;
| max-width: 97px;
| }
|
| &__time {
| padding: 4px 10px;
| }
|
| &__loading {
| width: 100%;
| height: 100%;
| display: flex;
| align-items: center;
| justify-content: center;
| }
| }
|
|