light.css 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238
  1. /*
  2. Rules to provide the theme colors
  3. Important:
  4. - No layout information should be provided.
  5. - To layout a control, see controls.css.
  6. - To layout a workbench UI, see workbench.css
  7. */
  8. .light body {
  9. background: #a2a2a2;
  10. color: #0e0e0e;
  11. }
  12. /* input */
  13. .light input,
  14. .light textarea {
  15. background: #f0f0f0;
  16. border: solid 1px #a0a0a0;
  17. }
  18. .light input[type="file"] {
  19. display: none;
  20. }
  21. .light input:focus,
  22. .light textarea:focus {
  23. background: #f6f6f6;
  24. border-color: #4242ff;
  25. outline-style: none;
  26. }
  27. .light input:read-only,
  28. .light textarea:read-only {
  29. background: #d6d6d6;
  30. }
  31. /* button */
  32. .light button,
  33. .light input[type="submit"] {
  34. background: #dadada;
  35. border-color: #808080;
  36. text-shadow: 1px 1px #ffffff;
  37. color: #0f0f0f;
  38. border-style: solid;
  39. border-width: 1px;
  40. border-radius: 3px;
  41. padding: 5px;
  42. }
  43. .light button[disabled] {
  44. color: rgba(0, 0, 0, 0.4);
  45. }
  46. .light button:hover {
  47. background: #eaeaea;
  48. }
  49. .light button:hover[disabled] {
  50. background: rgba(255, 255, 255, 0.4);
  51. }
  52. .light button:active {
  53. background: rgba(255, 255, 255, 0.9);
  54. }
  55. /* Tooltip */
  56. .light .Tooltip {
  57. background: #f0f0f0;
  58. border-color: rgba(0, 0, 0, 0.5);
  59. border-radius: 3px;
  60. }
  61. /* TabPane */
  62. .light .TabPaneContentArea,
  63. .light .TabPaneLabel.selected {
  64. background: #bdbdbd;
  65. }
  66. .light .TabPaneContentArea:empty {
  67. background: transparent !important;
  68. }
  69. .light .TabPaneLabel.selected {
  70. text-shadow: 1px 1px #f0f0f0;
  71. }
  72. /* Part */
  73. .light .TabPane.activePart .TabPaneLabel.selected {
  74. box-shadow: inset 0px 2px 0px #4242ff;
  75. }
  76. .light .TabPane.activePart .TabPaneContentArea,
  77. .light .TabPane.activePart .TabPaneLabel.selected {
  78. background: #cacaca;
  79. }
  80. .light .TabPane.activePart .TabPaneLabelSection.selected {
  81. border-bottom-color: #4242ff !important;
  82. color: #4242ff;
  83. }
  84. .light .ViewerPart .FilteredViewer {
  85. background: #dadada;
  86. }
  87. /* Viewer */
  88. .light .FilteredViewer {
  89. border-style: solid;
  90. border-width: 1px;
  91. border-color: rgba(255, 255, 255, 0.15);
  92. }
  93. /* Scroll Bar */
  94. .light {
  95. /* firefox */
  96. scrollbar-color: #b7b7b7 #e5e5e5;
  97. }
  98. .light .ScrollBar,
  99. .light ::-webkit-scrollbar-track {
  100. /* background: #e5e5e5; */
  101. }
  102. .light .ScrollHandler,
  103. .light ::-webkit-scrollbar-thumb {
  104. background: #a7a7a7;
  105. }
  106. .light .ScrollHandler:hover,
  107. .light ::-webkit-scrollbar-thumb:hover {
  108. background: #a0a0a0;
  109. }
  110. .light .ScrollHandler:active,
  111. .light ::-webkit-scrollbar-thumb:active {
  112. background: #979797;
  113. }
  114. /* Property Page */
  115. /*
  116. .light .PropertyTitleArea {
  117. } */
  118. /* .light .PropertyTitleArea label {
  119. color: rgba(0, 0, 0, 0.75);
  120. } */
  121. .light .PropertySectionPane {
  122. background: rgba(255, 255, 255, 0.3);
  123. border: 1px solid rgba(255, 255, 255, 0.1);
  124. border-radius: 3px;
  125. }
  126. /* Toolbar */
  127. .light .ToolbarItem {
  128. background: #dadada;
  129. border-color: #808080;
  130. text-shadow: 1px 1px #f0f0f0;
  131. }
  132. .light .ToolbarItem:hover {
  133. background: rgba(255, 255, 255, 0.5);
  134. }
  135. .light .ToolbarItem:active {
  136. background: rgba(255, 255, 255, 0.7);
  137. }
  138. .light .ToolbarItem.ActionSelected {
  139. background: rgba(255, 255, 255, 0.2);
  140. }
  141. /* ProgressBar */
  142. .light .ProgressBar {
  143. background: #4242ff;
  144. }
  145. /* Dialog */
  146. .light .DarkDialogContainer {
  147. background: #a2a2a2;
  148. }
  149. .light .Dialog {
  150. background: #cacaca;
  151. }
  152. .light .Dialog .DialogTitlePane {
  153. text-shadow: 1px 1px #f0f0f0;
  154. }
  155. .light .Dialog .FilteredViewer {
  156. background: #dadada;
  157. }
  158. /* Menu */
  159. .light .Menu {
  160. list-style-type: none;
  161. background: #e0e0e0;
  162. padding: 0px;
  163. margin: 0px;
  164. border-style: solid;
  165. border-width: 1px;
  166. border-color: #a0a0a0;
  167. }
  168. .light .MenuItemSeparator {
  169. background: #b0b0b0;
  170. }
  171. .light .MenuItem:hover,
  172. .light .MenuItemSelected {
  173. background: #4242ff;
  174. color: #f0f0f0;
  175. }
  176. .light .MenuItemDisabled {
  177. color: rgba(0, 0, 0, 0.5);
  178. }
  179. .light .MenuItemDisabled:hover {
  180. color: rgba(255, 255, 255, 0.5);
  181. }