jquery.fileupload.css 655 B

123456789101112131415161718192021222324252627282930313233343536
  1. @charset "UTF-8";
  2. /*
  3. * jQuery File Upload Plugin CSS
  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. * https://opensource.org/licenses/MIT
  11. */
  12. .fileinput-button {
  13. position: relative;
  14. overflow: hidden;
  15. display: inline-block;
  16. }
  17. .fileinput-button input {
  18. position: absolute;
  19. top: 0;
  20. right: 0;
  21. margin: 0;
  22. height: 100%;
  23. opacity: 0;
  24. filter: alpha(opacity=0);
  25. font-size: 200px !important;
  26. direction: ltr;
  27. cursor: pointer;
  28. }
  29. /* Fixes for IE < 8 */
  30. @media screen\9 {
  31. .fileinput-button input {
  32. font-size: 150% !important;
  33. }
  34. }