dimensionpicker.css 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /*
  2. * Copyright 2008 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 dimension pickers rendered by goog.ui.DimensionPickerRenderer.
  9. *
  10. * Author: robbyw@google.com (Robby Walker)
  11. * Author: abefettig@google.com (Abe Fettig)
  12. */
  13. .goog-dimension-picker {
  14. font-size: 18px;
  15. padding: 4px;
  16. }
  17. .goog-dimension-picker div {
  18. position: relative;
  19. }
  20. .goog-dimension-picker div.goog-dimension-picker-highlighted {
  21. /* Client apps must provide the URL at which they serve the image. */
  22. /* background: url(dimension-highlighted.png); */
  23. left: 0;
  24. overflow: hidden;
  25. position: absolute;
  26. top: 0;
  27. }
  28. .goog-dimension-picker-unhighlighted {
  29. /* Client apps must provide the URL at which they serve the image. */
  30. /* background: url(dimension-unhighlighted.png); */
  31. }
  32. .goog-dimension-picker-status {
  33. font-size: 10pt;
  34. text-align: center;
  35. }
  36. .goog-dimension-picker div.goog-dimension-picker-mousecatcher {
  37. left: 0;
  38. position: absolute !important;
  39. top: 0;
  40. }