lxw
2020-07-11 9db52f2f2dd3665fe9da1ae5657e0167c3a34d40
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
/* web各种的连接状态 */
.web-status {
    display: table;
    position: absolute;
    top: 0;
    left: 260px;
    z-index: 99999;
}
.web-status .cell-list {
    display: table-cell;
    vertical-align: middle;
    padding: 3px 5px;
}
.web-status .cell-list.voice {
    font-size: 18px;
    color: #1995DA;
    cursor: pointer;
}
.web-status .cell-list.voice .fa-bell-slash {
    display: none;
}
 
.web-status .cell-list.voice.close-voice .fa-bell-slash {
    display: inline-block;
}
.web-status .cell-list.voice.close-voice .fa-bell {
    display: none;
}
.web-status .cell-list.voice.close-voice {
    color: #C8C8C8;
}
 
.web-status .cell-list.full-screen-top {
    font-size: 18px;
    color: #1995DA;
    cursor: pointer;
}
.web-status .cell-list.full-screen-top .fa-arrows {
    display: none;
}
.web-status .cell-list.full-screen-top.close-full-screen .fa-arrows {
    display: inline-block;
}
.web-status .cell-list.full-screen-top.close-full-screen .fa-arrows-alt{
    display: none;
}
 
.web-status .progressbar {
    width: 60px;
}
.web-status .progress {
    position: relative;
}
.ui-tooltip {
    z-index: 9999999;
}
.ui-progressbar {
    position: relative;
}
.progress-label {
    position: absolute;
    left: 50%;
    margin-left: -10px;
    top: 4px;
    font-weight: bold;
    text-shadow: 1px 1px 0 #fff;
}