jquery.fileupload-ui.css 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. @charset "UTF-8";
  2. /*
  3. * jQuery File Upload UI Plugin CSS 6.10
  4. * https://github.com/blueimp/jQuery-File-Upload
  5. *
  6. * Copyright 2010, Sebastian Tschan
  7. * https://blueimp.net
  8. *
  9. * Licensed under the MIT license:
  10. * http://www.opensource.org/licenses/MIT
  11. */
  12. .fileinput-button {
  13. position: relative;
  14. overflow: hidden;
  15. float: left;
  16. margin-right: 4px;
  17. }
  18. .fileinput-button input {
  19. position: absolute;
  20. top: 0;
  21. right: 0;
  22. margin: 0;
  23. opacity: 0;
  24. filter: alpha(opacity=0);
  25. transform: translate(-300px, 0) scale(4);
  26. font-size: 23px;
  27. direction: ltr;
  28. cursor: pointer;
  29. }
  30. .fileupload-buttonbar .btn,
  31. .fileupload-buttonbar .toggle {
  32. margin-bottom: 5px;
  33. }
  34. .files .progress {
  35. width: 200px;
  36. }
  37. .progress-animated .bar {
  38. background: url(../img/progressbar.gif) !important;
  39. filter: none;
  40. }
  41. .fileupload-loading {
  42. position: absolute;
  43. left: 50%;
  44. width: 128px;
  45. height: 128px;
  46. background: url(../img/loading.gif) center no-repeat;
  47. display: none;
  48. }
  49. .fileupload-processing .fileupload-loading {
  50. display: block;
  51. }
  52. /* Fix for IE 6: */
  53. * html .fileinput-button {
  54. line-height: 24px;
  55. margin: 1px -3px 0 0;
  56. }
  57. /* Fix for IE 7: */
  58. * + html .fileinput-button {
  59. padding: 2px 15px;
  60. margin: 1px 0 0 0;
  61. }
  62. @media (max-width: 767px) {
  63. .files .btn span {
  64. display: none;
  65. }
  66. .files .preview * {
  67. width: 40px;
  68. }
  69. .files .name * {
  70. width: 80px;
  71. display: inline-block;
  72. word-wrap: break-word;
  73. }
  74. .files .progress {
  75. width: 20px;
  76. }
  77. .files .delete {
  78. width: 60px;
  79. }
  80. }