webuploader.css 847 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. position: relative;
  11. display: inline-block;
  12. cursor: pointer;
  13. background: #02c8ae;
  14. border-radius: 17px;
  15. height: 34px;
  16. line-height: 34px;
  17. color: #fff;
  18. text-align: center;
  19. overflow: hidden;
  20. padding: 0 20px;
  21. }
  22. .webuploader-upload-button {
  23. position: relative;
  24. display: inline-block;
  25. cursor: pointer;
  26. background: #02c8ae;
  27. border-radius: 17px;
  28. height: 34px;
  29. line-height: 34px;
  30. color: #fff;
  31. text-align: center;
  32. overflow: hidden;
  33. padding: 0 20px;
  34. margin-left: 10px;
  35. }
  36. .webuploader-pick-hover {
  37. background: #02c8ae;
  38. }
  39. .webuploader-pick-disable {
  40. opacity: 0.6;
  41. pointer-events:none;
  42. }