uploadify.css 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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. margin-bottom: 1em;
  9. }
  10. .uploadify-button {
  11. display: inline-block;
  12. margin-bottom: 0;
  13. font-weight: 700;
  14. text-align: center;
  15. vertical-align: middle;
  16. touch-action: manipulation;
  17. color: #ffffff;
  18. background-color: #f0ad4e;
  19. cursor: pointer;
  20. background-image: none;
  21. border: 1px solid #eea236;
  22. white-space: nowrap;
  23. font-size: 14px;
  24. line-height: 1.42857143;
  25. border-radius: 4px;
  26. -webkit-user-select: none;
  27. -moz-user-select: none;
  28. -ms-user-select: none;
  29. user-select: none;
  30. }
  31. .uploadify:hover .uploadify-button {
  32. background-color: #ec971f;
  33. border-color: #d58512;
  34. }
  35. .uploadify-button.disabled {
  36. background-color: #D0D0D0;
  37. color: #808080;
  38. }
  39. .uploadify-queue {
  40. margin-bottom: 1em;
  41. }
  42. .uploadify-queue-item {
  43. background-color: #F5F5F5;
  44. -webkit-border-radius: 3px;
  45. -moz-border-radius: 3px;
  46. border-radius: 3px;
  47. font: 11px Verdana, Geneva, sans-serif;
  48. margin-top: 5px;
  49. max-width: 350px;
  50. padding: 10px;
  51. }
  52. .uploadify-error {
  53. background-color: #FDE5DD !important;
  54. }
  55. .uploadify-queue-item .cancel a {
  56. background: url('img/uploadify-cancel.png') 0 0 no-repeat;
  57. float: right;
  58. height: 16px;
  59. text-indent: -9999px;
  60. width: 16px;
  61. }
  62. .uploadify-queue-item.completed {
  63. background-color: #E5E5E5;
  64. }
  65. .uploadify-progress {
  66. background-color: #E5E5E5;
  67. margin-top: 10px;
  68. width: 100%;
  69. }
  70. .uploadify-progress-bar {
  71. background-color: #0099FF;
  72. height: 3px;
  73. width: 1px;
  74. }