base.css 752 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /**
  2. Copyright (c) Jupyter Development Team.
  3. Distributed under the terms of the Modified BSD License.
  4. */
  5. /* Base styles */
  6. .jp-RenderedJSON {
  7. width: 100%;
  8. height: 100%;
  9. padding: 0;
  10. overflow: hidden;
  11. }
  12. /* Override react-json-tree inline styles */
  13. .jp-RenderedJSON *:not(mark) {
  14. background-color: transparent !important;
  15. }
  16. .jp-RenderedJSON ul {
  17. margin: 0 !important;
  18. }
  19. .jp-RenderedJSON .container {
  20. position: relative;
  21. width: 100%;
  22. }
  23. .jp-RenderedJSON .filter {
  24. position: absolute;
  25. top: 0;
  26. right: 0;
  27. width: 33%;
  28. max-width: 150px;
  29. z-index: 10;
  30. }
  31. /* Document styles */
  32. .jp-MimeDocument .jp-RenderedJSON {
  33. padding: 5px 5px 5px 20px;
  34. overflow-y: auto;
  35. }
  36. /* Output styles */
  37. /* .jp-OutputArea .jp-RenderedJSON {
  38. } */