lightGray.css 1009 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. /* Viewer */
  2. .lightGray .FilteredViewer {
  3. border-style: none;
  4. }
  5. /* Part */
  6. .lightGray .ViewerPart {
  7. display: grid;
  8. grid-template-columns: 2px 1fr 2px;
  9. grid-template-rows: 0px 1fr 0px;
  10. }
  11. .lightGray .ViewerPart .FilteredViewer {
  12. background: transparent;
  13. }
  14. .lightGray .TabPane.activePart .TabPaneContentArea,
  15. .lightGray .TabPane.activePart .TabPaneLabel.selected {
  16. background: #dadada;
  17. }
  18. /* Dialog */
  19. .lightGray .Dialog .FilteredViewer {
  20. background: transparent;
  21. }
  22. .lightGray .DialogButtonPane {
  23. border-top: 1px solid rgba(0, 0, 0, 0.05);
  24. padding-top: 5px;
  25. }
  26. .lightGray .ProgressDialog .DialogButtonPane {
  27. border: none;
  28. padding: 0px;
  29. }
  30. /* ScrollBar */
  31. .lightGray .ScrollHandler {
  32. background: #a3a3a3;
  33. }
  34. .lightGray .ScrollHandler:hover {
  35. background: #979797;
  36. }
  37. .lightGray .ScrollHandler:active {
  38. background: #878787;
  39. }
  40. .lightGray input {
  41. background: #e0e0e0 !important;
  42. }
  43. .lightGray input:read-only {
  44. background: #c0c0c0 !important;
  45. }