index.css 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /*-----------------------------------------------------------------------------
  2. | Copyright (c) Jupyter Development Team.
  3. | Distributed under the terms of the Modified BSD License.
  4. |----------------------------------------------------------------------------*/
  5. /*-----------------------------------------------------------------------------
  6. | Variables
  7. |----------------------------------------------------------------------------*/
  8. :root {
  9. --jp-private-inspector-tab-height: 24px;
  10. --jp-private-inspector-tab-width: 60px;
  11. }
  12. /*-----------------------------------------------------------------------------
  13. | Inspector
  14. |----------------------------------------------------------------------------*/
  15. .jp-Inspector {
  16. outline: none;
  17. min-width: 120px;
  18. min-height: 120px;
  19. }
  20. .jp-Inspector-content {
  21. background: var(--jp-layout-color1);
  22. display: flex;
  23. border: none;
  24. }
  25. .jp-Inspector-content {
  26. padding: 8px;
  27. width: 100%;
  28. height: 100%;
  29. overflow: auto;
  30. }
  31. .jp-Inspector-content pre {
  32. font-size: var(--jp-code-font-size);
  33. line-height: var(--jp-code-line-height);
  34. margin: 0;
  35. white-space: pre-wrap;
  36. }
  37. .jp-InspectorIcon {
  38. background-image: var(--jp-icon-inspector);
  39. transform: scaleX(-1);
  40. }