| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205 |
- .lightBlue body {
- background: #b2c3dd;
- color: #0e0e0e;
- }
- /* input */
- .lightBlue input, .lightBlue textarea {
- background: #dee5f1;
- border: solid 1px #97aac2;
- }
- .lightBlue input[type="file"] {
- display: none;
- }
- .lightBlue input:focus, .lightBlue textarea:focus {
- background: #f6f6f6;
- border-color: #4242ff;
- outline-style: none;
- }
- .lightBlue input:read-only, .lightBlue textarea:read-only {
- background: #bec5e1;
- }
- /* button */
- .lightBlue button,
- .lightBlue input[type="submit"] {
- background: #bbc9dd;
- border-color: #00000044;
- text-shadow: 1px 1px #ffffff;
- color: #0f0f0f;
- border-style: solid;
- border-width: 1px;
- border-radius: 3px;
- padding: 5px;
- }
- .lightBlue button[disabled] {
- color: rgba(0, 0, 0, 0.4);
- }
- .lightBlue button:hover {
- background: #d1e1f7;
- }
- .lightBlue button:hover[disabled] {
- background: rgba(255, 255, 255, 0.4);
- }
- .lightBlue button:active {
- background: rgba(255, 255, 255, 0.9);
- }
- /* Tooltip */
- .lightBlue .Tooltip {
- background: #f0f0f0;
- border-color: rgba(0, 0, 0, 0.5);
- border-radius: 3px;
- }
- /* TabPane */
- .lightBlue .TabPaneContentArea,
- .lightBlue .TabPaneLabel.selected {
- background: #99a9c4;
- }
- .lightBlue .TabPaneContentArea:empty {
- background: transparent !important;
- }
- .lightBlue .TabPaneLabel.selected {
- text-shadow: 1px 1px #ffffff6f;
- }
- /* Part */
- .lightBlue .TabPane.activePart .TabPaneLabel.selected {
- box-shadow: inset 0px 2px 0px #4242ff;
- text-shadow: 1px 1px #ffffff;
- }
- .lightBlue .TabPane.activePart .TabPaneContentArea,
- .lightBlue .TabPane.activePart .TabPaneLabel.selected {
- background: #dee5f1;
- }
- .lightBlue .ViewerPart .FilteredViewer {
- background: #dee5f1;
- }
- /* Viewer */
- .lightBlue .FilteredViewer {
- border-style: solid;
- border-width: 0px;
- border-color: rgba(255, 255, 255, 0.15);
- }
- /* Scroll Bar */
- .lightBlue {
- /* firefox */
- scrollbar-color: #535d68 #e5e5e5;
- }
- .lightBlue .ScrollBar,
- .lightBlue ::-webkit-scrollbar-track {
- /* background: #e5e5e5; */
- }
- .lightBlue .ScrollHandler,
- .lightBlue ::-webkit-scrollbar-thumb {
- background: #535d68;
- }
- .lightBlue .ScrollHandler:hover,
- .lightBlue ::-webkit-scrollbar-thumb:hover {
- background: #636f7c;
- }
- .lightBlue .ScrollHandler:active,
- .lightBlue ::-webkit-scrollbar-thumb:active {
- background: #748392;
- }
- /* Property Page */
- .lightBlue .PropertySectionPane {
- background: #b2c3dd88;
- border-radius: 3px;
- }
- /* Toolbar */
- .lightBlue .ToolbarItem {
- background: #bbc9dd;
- border-color: #00000044;
- text-shadow: 1px 1px #ffffff6f;
- }
- .lightBlue .ToolbarItem:hover {
- background: #d1e1f7;
- }
- .lightBlue .ToolbarItem:active {
- background: rgba(255, 255, 255, 0.7);
- }
- .lightBlue .ToolbarItem.ActionSelected {
- background: #d4e2f5;
- }
- /* ProgressBar */
- .lightBlue .ProgressBar {
- background: #4242ff;
- }
- /* Dialog */
- .lightBlue .DarkDialogContainer {
- background: #b2c3dd;
- }
- .lightBlue .Dialog {
- background: #dde5f0;
- }
- .lightBlue .Dialog .DialogTitlePane {
- text-shadow: 1px 1px #ffffffff;
- }
- /* Menu */
- .lightBlue .Menu {
- list-style-type: none;
- background: #ffffff;
- padding: 0px;
- margin: 0px;
- border-style: solid;
- border-width: 1px;
- border-color: #a0a0a0;
- }
- .lightBlue .MenuItemSeparator {
- background: #b0b0b0;
- }
- .lightBlue .MenuItem:hover, .lightBlue .MenuItemSelected {
- background: #4242ff;
- color: #f0f0f0;
- }
- .lightBlue .MenuItemDisabled {
- color: rgba(0, 0, 0, 0.5);
- }
- .lightBlue .MenuItemDisabled:hover {
- color: rgba(255, 255, 255, 0.5);
- }
|