light.css 2.3 KB

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