blob: 80e0e038a21e85499bc940bd4074117c4440b057 (
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
52
53
54
55
56
57
58
59
60
61
|
.yammer-import {
padding: 16px;
}
.import-step {
padding: 8px;
}
.import-label {
font-weight: bold;
}
.import-status {
margin-left: 20px;
padding-left: 20px;
}
.waiting {
color: #888;
}
.progress {
background-color: white;
border: solid 1px blue;
border-radius: 8px;
-moz-border-radius: 8px;
-webkit-border-radius: 8px;
-opera-border-radius: 8px;
}
.progress .import-label {
color: blue;
}
.progress .import-status {
background-image: url(icon_processing.gif);
background-repeat: no-repeat;
}
.complete {
color: black;
}
.complete .import-status {
background-image: url(done.png);
background-repeat: no-repeat;
}
.import-step-done .import-status {
/* override */
background: none !important;
}
.magiclink {
margin-left: 40px;
}
fieldset.import-error {
margin-top: 12px;
margin-bottom: 0px !important;
background-color: #fee !important;
}
|