webuploader.css 716 B

12345678910111213141516171819202122232425262728293031323334353637
  1. .webuploader-container {
  2. position: relative;
  3. }
  4. .webuploader-element-invisible {
  5. position: absolute !important;
  6. clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  7. clip: rect(1px,1px,1px,1px);
  8. }
  9. .webuploader-pick {
  10. width: 100%;
  11. height: 100%;
  12. position: relative;
  13. display: inline-block;
  14. cursor: pointer;
  15. color: #fff;
  16. text-align: center;
  17. overflow: hidden;
  18. }
  19. .webuploader-upload-button {
  20. position: relative;
  21. display: inline-block;
  22. cursor: pointer;
  23. background: #02c8ae;
  24. border-radius: 17px;
  25. height: 34px;
  26. line-height: 34px;
  27. color: #fff;
  28. text-align: center;
  29. overflow: hidden;
  30. padding: 0 20px;
  31. margin-left: 10px;
  32. }
  33. .webuploader-pick-disable {
  34. opacity: 0.6;
  35. pointer-events:none;
  36. }