dialog.css 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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. * Styles for Editor dialogs and their sub-components.
  9. *
  10. * @author marcosalmeida@google.com (Marcos Almeida)
  11. */
  12. .tr-dialog {
  13. width: 475px;
  14. }
  15. .tr-dialog .goog-tab-content {
  16. margin: 0;
  17. border: 1px solid #6b90da;
  18. padding: 4px 8px;
  19. background: #fff;
  20. overflow: auto;
  21. }
  22. .tr-tabpane {
  23. font-size: 10pt;
  24. padding: 1.3ex 0;
  25. }
  26. .tr-tabpane-caption {
  27. font-size: 10pt;
  28. margin-bottom: 0.7ex;
  29. background-color: #fffaf5;
  30. line-height: 1.3em;
  31. }
  32. .tr-tabpane .goog-tab-content {
  33. border: none;
  34. padding: 5px 7px 1px;
  35. }
  36. .tr-tabpane .goog-tab {
  37. background-color: #fff;
  38. border: none;
  39. width: 136px;
  40. line-height: 1.3em;
  41. margin-bottom: 0.7ex;
  42. }
  43. .tr-tabpane .goog-tab {
  44. text-decoration: underline;
  45. color: blue;
  46. cursor: pointer;
  47. }
  48. .tr-tabpane .goog-tab-selected {
  49. font-weight: bold;
  50. text-decoration: none;
  51. color: black;
  52. }
  53. .tr-tabpane .goog-tab input {
  54. margin: -2px 5px 0 0;
  55. }