workbench.css 1005 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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. /* editors */
  28. .WelcomePageArea {
  29. overflow: auto;
  30. height: 100%;
  31. }
  32. /* toolbar */
  33. .MainToolbar {
  34. display: grid;
  35. grid-template-columns: 1fr auto 1fr;
  36. grid-template-rows: auto;
  37. padding: 3px;
  38. padding-top: 5px;
  39. padding-bottom: 0px;
  40. }
  41. .MainToolbarLeftArea {}
  42. .MainToolbarCenterArea {}
  43. .MainToolbarRightArea {}
  44. .MainToolbarRightArea .ToolbarItem {
  45. float: right !important;
  46. }
  47. /* AlertDialog */
  48. .AlertDialog pre {
  49. font-family: Arial, Helvetica, sans-serif;
  50. font-size: 14px;
  51. }