index.css 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /*-----------------------------------------------------------------------------
  2. | Copyright (c) Jupyter Development Team.
  3. | Distributed under the terms of the Modified BSD License.
  4. |----------------------------------------------------------------------------*/
  5. @import url('~@phosphor/widgets/style/index.css');
  6. .p-Widget.p-mod-hidden {
  7. display: none !important;
  8. }
  9. body {
  10. font-family: var(--jp-ui-font-family);
  11. background: var(--jp-layout-color3);
  12. margin: 0;
  13. padding: 0;
  14. overflow: hidden;
  15. }
  16. .jp-ApplicationShell {
  17. position: absolute;
  18. top: 0;
  19. left: 0;
  20. right: 0;
  21. bottom: 0;
  22. }
  23. .jp-ApplicationShell.jp-mod-devMode {
  24. border-top: 4px solid red;
  25. }
  26. #jp-main-dock-panel {
  27. padding: 5px;
  28. }
  29. #jp-top-panel {
  30. border-bottom: var(--jp-border-width) solid var(--jp-border-color0);
  31. background: var(--jp-layout-color1);
  32. display: flex;
  33. min-height: var(--jp-private-menubar-height);
  34. }
  35. #jp-bottom-panel {
  36. background: var(--jp-layout-color1);
  37. display: flex;
  38. }
  39. /* Sibling imports */
  40. @import './datagrid.css';
  41. @import './dockpanel.css';
  42. @import './images.css';
  43. @import './icons.css';
  44. @import './materialcolors.css';
  45. @import './menus.css';
  46. @import './scrollbar.css';
  47. @import './tabs.css';
  48. @import './buttons.css';
  49. @import './sidepanel.css';