blob: c718a6d16c7199e7c7134b86ba839926ce9712e1 (
plain)
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
|
input:invalid {
background-color: #ff6666;
}
.left-icon {
background-position: 4px top !important;
}
.network-menu-item {
width: 100%;
}
.network-label-icon {
-webkit-box-align: center;
display: -webkit-box;
min-height: 24px;
}
.network-label {
-webkit-box-flex: 1;
}
.network-icon {
width: 24px;
height: 24px;
background-position: 50% 50%;
background-repeat: no-repeat;
}
.network-status {
color: grey;
}
.spinner {
background-image: -webkit-canvas(spinner-circle);
-webkit-animation-name: spin;
-webkit-animation-duration:2s;
-webkit-animation-iteration-count:infinite;
-webkit-animation-timing-function:linear;
}
@-webkit-keyframes spin {
from {
-webkit-transform: rotate(0deg);
}
to {
-webkit-transform: rotate(360deg);
}
}
|