| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244 |
- /*
- Rules to provide the theme colors
- Important:
- - No layout information should be provided.
- - To layout a control, see controls.css.
- - To layout a workbench UI, see workbench.css
- */
- .light body, .light .Window {
- background: #a2a2a2;
- color: #0e0e0e;
- }
- /* input */
- .light input,
- .light textarea {
- background: #f0f0f0;
- border: solid 1px #a0a0a0;
- }
- .light input[type="file"] {
- display: none;
- }
- .light input:focus,
- .light textarea:focus {
- background: #f6f6f6;
- border-color: #4242ff !important;
- outline-style: none;
- }
- .light input:read-only,
- .light textarea:read-only {
- background: #d6d6d6;
- }
- /* button */
- .light button,
- .light input[type="submit"] {
- background: #dadada;
- border-color: #808080;
- text-shadow: 1px 1px #ffffff;
- color: #0f0f0f;
- border-style: solid;
- border-width: 1px;
- border-radius: 3px;
- padding: 5px;
- }
- .light button[disabled] {
- color: rgba(0, 0, 0, 0.4);
- }
- .light button:hover {
- background: #eaeaea;
- }
- .light button:hover[disabled] {
- background: rgba(255, 255, 255, 0.4);
- }
- .light button:active {
- background: rgba(255, 255, 255, 0.9);
- }
- /* Tooltip */
- .light .Tooltip {
- background: #f0f0f0;
- border-color: rgba(0, 0, 0, 0.5);
- border-radius: 3px;
- }
- /* TabPane */
- .light .TabPaneContentArea,
- .light .TabPaneLabel.selected {
- background: #bdbdbd;
- }
- .light .TabPaneContentArea:empty {
- background: transparent !important;
- }
- .light .TabPaneLabel.selected {
- text-shadow: 1px 1px #f0f0f0;
- }
- /* Part */
- .light .TabPane.activePart .TabPaneLabel.selected {
- box-shadow: inset 0px 2px 0px #4242ff;
- }
- .light .TabPane.activePart .TabPaneContentArea,
- .light .TabPane.activePart .TabPaneLabel.selected {
- background: #cacaca;
- }
- .light .TabPane.activePart .TabPaneLabelSection.selected {
- border-bottom-color: #4242ff !important;
- color: #4242ff;
- }
- .light .ViewerPart .FilteredViewer {
- background: #dadada;
- }
- /* Viewer */
- .light .FilteredViewer {
- border-style: solid;
- border-width: 1px;
- border-color: rgba(255, 255, 255, 0.15);
- }
- /* Scroll Bar */
- .light {
- /* firefox */
- scrollbar-color: #b7b7b7 #e5e5e5;
- }
- .light .ScrollBar,
- .light ::-webkit-scrollbar-track {
- /* background: #e5e5e5; */
- }
- .light .ScrollHandler,
- .light ::-webkit-scrollbar-thumb {
- background: #a7a7a7;
- }
- .light .ScrollHandler:hover,
- .light ::-webkit-scrollbar-thumb:hover {
- background: #a0a0a0;
- }
- .light .ScrollHandler:active,
- .light ::-webkit-scrollbar-thumb:active {
- background: #979797;
- }
- /* Property Page */
- /*
- .light .PropertyTitleArea {
- } */
- /* .light .PropertyTitleArea label {
- color: rgba(0, 0, 0, 0.75);
- } */
- .light .PropertySectionPane {
- background: rgba(255, 255, 255, 0.3);
- border: 1px solid rgba(255, 255, 255, 0.1);
- border-radius: 3px;
- }
- /* Toolbar */
- .light .ToolbarItem {
- background: #dadada;
- border-color: #808080;
- text-shadow: 1px 1px #f0f0f0;
- }
- .light .ToolbarItem:hover {
- background: rgba(255, 255, 255, 0.5);
- }
- .light .ToolbarItem:active {
- background: rgba(255, 255, 255, 0.7);
- }
- .light .ToolbarItem.ActionSelected {
- background: rgba(255, 255, 255, 0.2);
- }
- /* ProgressBar */
- .light .ProgressBar {
- background: #4242ff;
- }
- /* Pane */
- .light .Pane {
- background: #cacaca;
- }
- /* Dialog */
- .light .DarkDialogContainer {
- background: #a2a2a2;
- }
- .light .Dialog {
- background: #cacaca;
- }
- .light .Dialog .DialogTitlePane {
- text-shadow: 1px 1px #f0f0f0;
- }
- .light .Dialog .FilteredViewer {
- background: #dadada;
- }
- /* Menu */
- .light .Menu {
- list-style-type: none;
- background: #e0e0e0;
- padding: 0px;
- margin: 0px;
- border-style: solid;
- border-width: 1px;
- border-color: #a0a0a0;
- }
- .light .MenuItemSeparator {
- background: #b0b0b0;
- }
- .light .MenuItem:hover,
- .light .MenuItemSelected {
- background: #4242ff;
- color: #f0f0f0;
- }
- .light .MenuItemDisabled {
- color: rgba(0, 0, 0, 0.5);
- }
- .light .MenuItemDisabled:hover {
- color: rgba(255, 255, 255, 0.5);
- }
|