uploadify.css 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /*
  2. Uploadify
  3. Copyright (c) 2012 Reactive Apps, Ronnie Garcia
  4. Released under the MIT License <http://www.opensource.org/licenses/mit-license.php>
  5. */
  6. .uploadify {
  7. position: relative;
  8. display: inline;
  9. }
  10. .uploadify-button {
  11. /*padding: 0;*/
  12. }
  13. .uploadify-button.disabled {
  14. background-color: #D0D0D0;
  15. color: #808080;
  16. }
  17. .uploadify-queue {
  18. margin-bottom: 1em;
  19. }
  20. .uploadify-queue-item {
  21. background-color: #F5F5F5;
  22. -webkit-border-radius: 3px;
  23. -moz-border-radius: 3px;
  24. border-radius: 3px;
  25. font: 11px Verdana, Geneva, sans-serif;
  26. margin-top: 5px;
  27. /*max-width: 350px;*/
  28. padding: 10px;
  29. }
  30. .uploadify-error {
  31. background-color: #FDE5DD !important;
  32. }
  33. .uploadify-queue-item .cancel a {
  34. background: url('uploadify-cancel.png') 0 0 no-repeat;
  35. float: right;
  36. height: 16px;
  37. text-indent: -9999px;
  38. width: 16px;
  39. }
  40. .uploadify-queue-item.completed {
  41. background-color: #E5E5E5;
  42. }
  43. .uploadify-progress {
  44. background-color: #E5E5E5;
  45. margin-top: 10px;
  46. width: 100%;
  47. }
  48. .uploadify-progress-bar {
  49. background-color: #0099FF;
  50. height: 3px;
  51. width: 1px;
  52. }
  53. .uploadify-queue-item span, .uploadify-queue-item a {
  54. padding: 0 5px;
  55. line-height: 2em;
  56. }
  57. .uploadify-queue-item a {
  58. float: right;
  59. }