]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/YammerImport/css/admin.css
Pretty up the Yammer import status display a bit
[quix0rs-gnu-social.git] / plugins / YammerImport / css / admin.css
1 .yammer-import {
2     background-color: #eee;
3
4     border: solid 1px;
5     border-radius: 8px;
6     -moz-border-radius: 8px;
7     -webkit-border-radius: 8px;
8     -opera-border-radius: 8px;
9
10     padding: 16px;
11 }
12
13 .import-step {
14     padding: 8px;
15 }
16 .import-label {
17     font-weight: bold;
18 }
19 .import-status {
20     margin-left: 20px;
21     padding-left: 20px;
22 }
23
24
25 .waiting {
26     color: #888;
27 }
28
29 .progress {
30     background-color: #fff;
31     border-radius: 8px;
32     -moz-border-radius: 8px;
33     -webkit-border-radius: 8px;
34     -opera-border-radius: 8px;
35 }
36
37 .progress .import-label {
38     color: blue;
39 }
40
41 .progress .import-status {
42     background-image: url(icon_processing.gif);
43     background-repeat: no-repeat;
44 }
45
46 .complete {
47     color: black;
48 }
49
50 .complete .import-status {
51     background-image: url(done.png);
52     background-repeat: no-repeat;
53 }
54
55 .import-step-done .import-status {
56     /* override */
57     background: none !important;
58 }