light.css 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  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. #viewport #info {
  33. text-shadow: 1px 1px 0px rgba(0,0,0,0.25);
  34. }
  35. #player {
  36. position: absolute;
  37. top: 32px;
  38. left: 0px;
  39. right: 300px;
  40. bottom: 32px;
  41. }
  42. #menubar {
  43. position: absolute;
  44. width: 100%;
  45. height: 32px;
  46. background: #eee;
  47. padding: 0px;
  48. margin: 0px;
  49. }
  50. #menubar .menu {
  51. float: left;
  52. cursor: pointer;
  53. padding-right: 8px;
  54. }
  55. #menubar .menu.right {
  56. float: right;
  57. cursor: auto;
  58. text-align: right;
  59. }
  60. #menubar .menu .title {
  61. display: inline-block;
  62. color: #888;
  63. margin: 0px;
  64. padding: 8px;
  65. }
  66. #menubar .menu .options {
  67. position: absolute;
  68. display: none;
  69. padding: 5px 0px;
  70. background: #eee;
  71. width: 140px;
  72. }
  73. #menubar .menu:hover .options {
  74. display: block;
  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. #menubar .menu .options .option:active {
  90. color: #666;
  91. background: transparent;
  92. }
  93. #sidebar {
  94. position: absolute;
  95. right: 0px;
  96. top: 32px;
  97. bottom: 0px;
  98. width: 300px;
  99. background: #eee;
  100. overflow: auto;
  101. }
  102. #sidebar input,
  103. #sidebar textarea,
  104. #sidebar select {
  105. /* background: #ccc; */
  106. }
  107. #sidebar .Panel {
  108. margin-bottom: 10px;
  109. }
  110. #sidebar .Panel.collapsed {
  111. margin-bottom: 0px;
  112. }
  113. #sidebar > .Panel {
  114. color: #888;
  115. padding: 10px;
  116. border-top: 1px solid #ccc;
  117. }
  118. #sidebar #outliner {
  119. width: 100%;
  120. height: 140px;
  121. color: #444;
  122. font-size: 12px;
  123. }
  124. #toolbar {
  125. position: absolute;
  126. left: 0px;
  127. right: 300px;
  128. bottom: 0px;
  129. height: 32px;
  130. background: #eee;
  131. color: #333;
  132. }
  133. #toolbar .Panel {
  134. padding: 4px;
  135. color: #888;
  136. }
  137. #toolbar button {
  138. margin-right: 6px;
  139. }