light.css 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  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 .title {
  53. color: #888;
  54. margin: 0px;
  55. padding: 8px;
  56. }
  57. #menubar .menu .options {
  58. display: none;
  59. padding: 5px 0px;
  60. background: #eee;
  61. width: 140px;
  62. }
  63. #menubar .menu:hover .options {
  64. display: block;
  65. }
  66. #menubar .menu .options hr {
  67. border-color: #ddd;
  68. }
  69. #menubar .menu .options .option {
  70. color: #666;
  71. background-color: transparent;
  72. padding: 5px 10px;
  73. margin: 0px !important;
  74. }
  75. #menubar .menu .options .option:hover {
  76. color: #fff;
  77. background-color: #08f;
  78. }
  79. #menubar .menu .options .option:active {
  80. color: #666;
  81. background: transparent;
  82. }
  83. #sidebar {
  84. position: absolute;
  85. right: 0px;
  86. top: 32px;
  87. bottom: 0px;
  88. width: 300px;
  89. background: #eee;
  90. overflow: auto;
  91. }
  92. #sidebar input,
  93. #sidebar textarea,
  94. #sidebar select {
  95. /* background: #ccc; */
  96. }
  97. #sidebar .Panel {
  98. margin-bottom: 10px;
  99. }
  100. #sidebar .Panel.collapsed {
  101. margin-bottom: 0px;
  102. }
  103. #sidebar > .Panel {
  104. color: #888;
  105. padding: 10px;
  106. border-top: 1px solid #ccc;
  107. }
  108. #sidebar #outliner {
  109. width: 100%;
  110. height: 140px;
  111. color: #444;
  112. font-size: 12px;
  113. }
  114. #toolbar {
  115. position: absolute;
  116. left: 0px;
  117. right: 300px;
  118. bottom: 0px;
  119. height: 32px;
  120. background: #eee;
  121. color: #333;
  122. }
  123. #toolbar .Panel {
  124. padding: 4px;
  125. color: #888;
  126. }
  127. #toolbar button {
  128. margin-right: 6px;
  129. }