workbench.css 930 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /*
  2. Rules to layout the Workbench.
  3. Important:
  4. - Don't use colors here.
  5. - To layout controls, see controls.css
  6. */
  7. /* Part */
  8. .Part {
  9. width: 100%;
  10. height: 100%;
  11. }
  12. .ViewerPart {
  13. display: grid;
  14. grid-template-columns: 5px 1fr 5px;
  15. grid-template-rows: 5px 1fr 5px;
  16. }
  17. .ViewerPart .FilteredViewer {
  18. grid-column-start: 2;
  19. grid-row-start: 2;
  20. border-radius: 3px;
  21. }
  22. .Part>.FilteredViewer {
  23. position: relative;
  24. width: 100%;
  25. height: 100%;
  26. }
  27. /* toolbar */
  28. .MainToolbar {
  29. display: grid;
  30. grid-template-columns: 1fr auto 1fr;
  31. grid-template-rows: auto;
  32. padding: 3px;
  33. padding-top: 5px;
  34. padding-bottom: 0px;
  35. }
  36. .MainToolbarLeftArea {}
  37. .MainToolbarCenterArea {}
  38. .MainToolbarRightArea {}
  39. .MainToolbarRightArea .ToolbarItem {
  40. float: right !important;
  41. }
  42. /* AlertDialog */
  43. .AlertDialog pre {
  44. font-family: Arial, Helvetica, sans-serif;
  45. font-size: 14px;
  46. }