dragdropdetector.css 869 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /*
  2. * Copyright 2007 The Closure Library Authors. All Rights Reserved.
  3. *
  4. * Use of this source code is governed by the Apache License, Version 2.0.
  5. * See the COPYING file for details.
  6. */
  7. /*
  8. * Styling for the drag drop detector.
  9. *
  10. * Author: robbyw@google.com (Robby Walker)
  11. * Author: wcrosby@google.com (Wayne Crosby)
  12. */
  13. .goog-dragdrop-w3c-editable-iframe {
  14. position: absolute;
  15. width: 100%;
  16. height: 10px;
  17. top: -150px;
  18. left: 0;
  19. z-index: 10000;
  20. padding: 0;
  21. overflow: hidden;
  22. opacity: 0;
  23. -moz-opacity: 0;
  24. }
  25. .goog-dragdrop-ie-editable-iframe {
  26. width: 100%;
  27. height: 5000px;
  28. }
  29. .goog-dragdrop-ie-input {
  30. width: 100%;
  31. height: 5000px;
  32. }
  33. .goog-dragdrop-ie-div {
  34. position: absolute;
  35. top: -5000px;
  36. left: 0;
  37. width: 100%;
  38. height: 5000px;
  39. z-index: 10000;
  40. background-color: white;
  41. filter: alpha(opacity=0);
  42. overflow: hidden;
  43. }