jquery.fileupload.css 919 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. @charset "UTF-8";
  2. /*
  3. * jQuery File Upload Plugin CSS 1.3.0
  4. * https://github.com/blueimp/jQuery-File-Upload
  5. *
  6. * Copyright 2013, 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. /*margin-bottom: 16px;*/
  16. }
  17. .fileinput-button input {
  18. position: absolute;
  19. top: 0;
  20. right: 0;
  21. margin: 0;
  22. opacity: 0;
  23. -ms-filter: 'alpha(opacity=0)';
  24. font-size: 200px;
  25. direction: ltr;
  26. cursor: pointer;
  27. }
  28. /* multi uploader */
  29. .progress {
  30. display: none;
  31. margin-bottom: 16px;
  32. /*max-width: 400px;*/
  33. }
  34. /* added for PPB MultiUpload component */
  35. .fileinput-row {
  36. margin-bottom: 16px;
  37. }
  38. /* Fixes for IE < 8 */
  39. @media screen\9 {
  40. .fileinput-button input {
  41. filter: alpha(opacity=0);
  42. font-size: 100%;
  43. height: 100%;
  44. }
  45. }