equationeditor.css 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. /*
  2. * Copyright 2009 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. * The CSS definition for everything inside equation editor dialog.
  9. *
  10. * Author: yoah@google.com (Yoah Bar-David)
  11. * Author: kfk@google.com (Ming Zhang)
  12. */
  13. .ee-modal-dialog {
  14. width: 475px;
  15. }
  16. .ee-content {
  17. background: #FFF;
  18. border: 1px solid #369;
  19. overflow: auto;
  20. padding: 4px 8px;
  21. }
  22. .ee-tex {
  23. border: 1px solid #000;
  24. display: block;
  25. height: 7.5em;
  26. margin: 4px 0 10px 0;
  27. width: 100%;
  28. }
  29. .ee-section-title {
  30. font-weight: bold;
  31. }
  32. .ee-section-title-floating {
  33. float: left;
  34. }
  35. #ee-section-learn-more {
  36. float: right;
  37. }
  38. .ee-preview-container {
  39. border: 1px dashed #ccc;
  40. height: 80px;
  41. margin: 4px 0 10px 0;
  42. width: 100%;
  43. overflow: auto;
  44. }
  45. .ee-warning {
  46. color: #F00;
  47. }
  48. .ee-palette {
  49. border: 1px solid #aaa;
  50. left: 0;
  51. outline: none;
  52. position: absolute;
  53. }
  54. .ee-palette-table {
  55. border: 0;
  56. border-collapse: separate;
  57. }
  58. .ee-palette-cell {
  59. background: #F0F0F0;
  60. border: 1px solid #FFF;
  61. margin: 0;
  62. padding: 1px;
  63. }
  64. .ee-palette-cell-hover {
  65. background: #E2ECF9 !important;
  66. border: 1px solid #000;
  67. padding: 1px;
  68. }
  69. .ee-palette-cell-selected {
  70. background: #F0F0F0;
  71. border: 1px solid #CCC !important;
  72. padding: 1px;
  73. }
  74. .ee-menu-palette-table {
  75. margin-right: 10px;
  76. }
  77. .ee-menu-palette {
  78. outline: none;
  79. padding-top: 2px;
  80. }
  81. .ee-menu-palette-cell {
  82. background: #F0F0F0 none repeat scroll 0 0;
  83. border-color: #888 #AAA #AAA #888;
  84. border-style: solid;
  85. border-width: 1px;
  86. }
  87. .ee-menu-palette-cell-hover,
  88. .ee-menu-palette-cell-selected {
  89. background: #F0F0F0;
  90. }
  91. .ee-palette-item,
  92. .ee-menu-palette-item {
  93. background-image: url(//ssl.gstatic.com/editor/ee-palettes.gif);
  94. }