light.css 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  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. white-space: nowrap;
  36. }
  37. .FancySelect .option.active {
  38. background-color: #F0F0F0;
  39. }
  40. input.Number {
  41. color: #0080f0;
  42. font-size: 12px; /** TODO: Use of !imporant is not ideal **/
  43. background-color: transparent!important; /* For now this is a quick fix a rendering issue due to inherited background */
  44. border: 1px solid transparent;
  45. padding: 2px;
  46. cursor: col-resize;
  47. }
  48. #viewport {
  49. top: 32px;
  50. left: 0px;
  51. right: 300px;
  52. bottom: 32px;
  53. background-color: #aaaaaa;
  54. }
  55. #menubar {
  56. position: absolute;
  57. width: 100%;
  58. height: 32px;
  59. background: #eee;
  60. padding: 0px;
  61. margin: 0px;
  62. }
  63. #menubar .menu {
  64. float: left;
  65. width: 50px;
  66. cursor: pointer;
  67. }
  68. #menubar .Panel {
  69. color: #888;
  70. }
  71. #menubar .menu .options {
  72. padding: 5px 0px;
  73. background: #eee;
  74. width: 140px;
  75. }
  76. #menubar .menu .options hr {
  77. border-color: #ddd;
  78. }
  79. #menubar .menu .options .option {
  80. color: #666;
  81. background-color: transparent;
  82. padding: 5px 10px;
  83. margin: 0px !important;
  84. }
  85. #menubar .menu .options .option:hover {
  86. color: #fff;
  87. background-color: #08f;
  88. }
  89. #sidebar {
  90. position: absolute;
  91. right: 0px;
  92. top: 32px;
  93. bottom: 0px;
  94. width: 300px;
  95. background: #eee;
  96. overflow: auto;
  97. }
  98. #sidebar input,
  99. #sidebar textarea,
  100. #sidebar select {
  101. /* background: #ccc; */
  102. }
  103. #sidebar .Panel {
  104. margin-bottom: 10px;
  105. }
  106. #sidebar > .Panel {
  107. color: #888;
  108. padding: 10px;
  109. border-top: 1px solid #ccc;
  110. }
  111. #sidebar #outliner {
  112. width: 100%;
  113. height: 140px;
  114. color: #444;
  115. font-size: 12px;
  116. }
  117. #sidebar #outliner .type {
  118. padding: 2px 4px;
  119. font-size: 10px;
  120. background: #eee;
  121. color: #aaa;
  122. }
  123. #toolbar {
  124. position: absolute;
  125. left: 0px;
  126. right: 300px;
  127. bottom: 0px;
  128. height: 32px;
  129. background: #eee;
  130. color: #333;
  131. }
  132. #toolbar .Panel {
  133. padding: 4px;
  134. color: #888;
  135. }
  136. #toolbar button {
  137. margin-right: 6px;
  138. }