base.css 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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. border: none;
  23. }
  24. .jp-Inspector-content {
  25. padding: 8px;
  26. width: 100%;
  27. height: 100%;
  28. overflow: auto;
  29. }
  30. .jp-Inspector-content pre {
  31. font-size: var(--jp-code-font-size);
  32. line-height: var(--jp-code-line-height);
  33. margin: 0;
  34. white-space: pre-wrap;
  35. }
  36. .jp-InspectorIcon {
  37. background-image: var(--jp-icon-inspector);
  38. transform: scaleX(-1);
  39. }
  40. .jp-Inspector-default-content {
  41. display: flex;
  42. align-items: center;
  43. justify-content: center;
  44. font-size: xx-large;
  45. font-style: italic;
  46. color: darkgray;
  47. }