admin.css 945 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. .yammer-import {
  2. padding: 16px;
  3. }
  4. .import-step {
  5. padding: 8px;
  6. }
  7. .import-label {
  8. font-weight: bold;
  9. }
  10. .import-status {
  11. margin-left: 20px;
  12. padding-left: 20px;
  13. }
  14. .waiting {
  15. color: #888;
  16. }
  17. .progress {
  18. background-color: white;
  19. border: solid 1px blue;
  20. border-radius: 8px;
  21. -moz-border-radius: 8px;
  22. -webkit-border-radius: 8px;
  23. -opera-border-radius: 8px;
  24. }
  25. .progress .import-label {
  26. color: blue;
  27. }
  28. .progress .import-status {
  29. background-image: url(icon_processing.gif);
  30. background-repeat: no-repeat;
  31. }
  32. .complete {
  33. color: black;
  34. }
  35. .complete .import-status {
  36. background-image: url(done.png);
  37. background-repeat: no-repeat;
  38. }
  39. .import-step-done .import-status {
  40. /* override */
  41. background: none !important;
  42. }
  43. .magiclink {
  44. margin-left: 40px;
  45. }
  46. fieldset.import-error {
  47. margin-top: 12px;
  48. margin-bottom: 0px !important;
  49. background-color: #fee !important;
  50. }