light.css 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. * {
  2. vertical-align: middle;
  3. }
  4. body {
  5. font-family: Arial, sans-serif;
  6. font-size: 14px;
  7. margin: 0;
  8. overflow: hidden;
  9. }
  10. hr {
  11. border: 0px;
  12. border-top: 1px solid #ccc;
  13. }
  14. button {
  15. position: relative;
  16. }
  17. .Panel {
  18. -moz-user-select: none;
  19. -webkit-user-select: none;
  20. -ms-user-select: none;
  21. /* No support for these yet */
  22. -o-user-select: none;
  23. user-select: none;
  24. }
  25. .FancySelect {
  26. background: #fff;
  27. border: 1px solid #ccc;
  28. padding: 0;
  29. cursor: default;
  30. overflow: auto;
  31. outline: none;
  32. }
  33. .FancySelect .option {
  34. padding: 4px;
  35. color: #666;
  36. white-space: nowrap;
  37. }
  38. .FancySelect .option.active {
  39. background-color: #f8f8f8;
  40. }
  41. input.Number {
  42. color: #0080f0;
  43. font-size: 12px; /** TODO: Use of !imporant is not ideal **/
  44. background-color: transparent!important; /* For now this is a quick fix a rendering issue due to inherited background */
  45. border: 1px solid transparent;
  46. padding: 2px;
  47. cursor: col-resize;
  48. }
  49. #viewport {
  50. top: 32px;
  51. left: 0px;
  52. right: 300px;
  53. bottom: 32px;
  54. background-color: #aaaaaa;
  55. }
  56. #menubar {
  57. position: absolute;
  58. width: 100%;
  59. height: 32px;
  60. background: #eee;
  61. padding: 0px;
  62. margin: 0px;
  63. }
  64. #menubar .menu {
  65. float: left;
  66. width: 50px;
  67. cursor: pointer;
  68. }
  69. #menubar .Panel {
  70. color: #888;
  71. }
  72. #menubar .menu .options {
  73. padding: 5px 0px;
  74. background: #eee;
  75. width: 140px;
  76. }
  77. #menubar .menu .options hr {
  78. border-color: #ddd;
  79. }
  80. #menubar .menu .options .option {
  81. color: #666;
  82. background-color: transparent;
  83. padding: 5px 10px;
  84. margin: 0px !important;
  85. }
  86. #menubar .menu .options .option:hover {
  87. color: #fff;
  88. background-color: #08f;
  89. }
  90. #sidebar {
  91. position: absolute;
  92. right: 0px;
  93. top: 32px;
  94. bottom: 0px;
  95. width: 300px;
  96. background: #eee;
  97. overflow: auto;
  98. }
  99. #sidebar input,
  100. #sidebar textarea,
  101. #sidebar select {
  102. /* background: #ccc; */
  103. }
  104. #sidebar .Panel {
  105. margin-bottom: 10px;
  106. }
  107. #sidebar > .Panel {
  108. color: #888;
  109. padding: 10px;
  110. border-top: 1px solid #ccc;
  111. }
  112. #sidebar #outliner {
  113. width: 100%;
  114. height: 140px;
  115. color: #444;
  116. font-size: 12px;
  117. }
  118. #toolbar {
  119. position: absolute;
  120. left: 0px;
  121. right: 300px;
  122. bottom: 0px;
  123. height: 32px;
  124. background: #eee;
  125. color: #333;
  126. }
  127. #toolbar .Panel {
  128. padding: 4px;
  129. color: #888;
  130. }
  131. #toolbar button {
  132. margin-right: 6px;
  133. }