base.css 772 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. min-height: 30px;
  23. }
  24. .jp-RenderedJSON .filter {
  25. position: absolute;
  26. top: 0;
  27. right: 0;
  28. width: 33%;
  29. max-width: 150px;
  30. z-index: 10;
  31. }
  32. /* Document styles */
  33. .jp-MimeDocument .jp-RenderedJSON {
  34. padding: 5px 5px 5px 20px;
  35. overflow-y: auto;
  36. }
  37. /* Output styles */
  38. /* .jp-OutputArea .jp-RenderedJSON {
  39. } */