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
| /* web各种的连接状态 */
| .web-status {
| display: table;
| position: absolute;
| top: 0;
| left: 550px;
| z-index: 99999;
| }
| .web-status .cell-list {
| display: table-cell;
| padding: 3px 5px;
| }
| .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;
| }
|
|