file-upload.css 581 B

123456789101112131415161718192021222324252627282930313233
  1. /*!
  2. * Ext JS Library 3.0.0
  3. * Copyright(c) 2006-2009 Ext JS, LLC
  4. * licensing@extjs.com
  5. * http://www.extjs.com/license
  6. */
  7. /*
  8. * FileUploadField component styles
  9. */
  10. .x-form-file-wrap {
  11. position: relative;
  12. height: 22px;
  13. }
  14. .x-form-file-wrap .x-form-file {
  15. position: absolute;
  16. right: 0;
  17. -moz-opacity: 0;
  18. filter:alpha(opacity: 0);
  19. opacity: 0;
  20. z-index: 2;
  21. height: 22px;
  22. }
  23. .x-form-file-wrap .x-form-file-btn {
  24. position: absolute;
  25. right: 0;
  26. z-index: 1;
  27. }
  28. .x-form-file-wrap .x-form-file-text {
  29. position: absolute;
  30. left: 0;
  31. z-index: 3;
  32. color: #777;
  33. }