12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- /**
- Copyright (c) Jupyter Development Team.
- Distributed under the terms of the Modified BSD License.
- */
- /* Base styles */
- .jp-RenderedJSON {
- width: 100%;
- height: 100%;
- padding: 0;
- overflow: hidden;
- }
- /* Override react-json-tree inline styles */
- .jp-RenderedJSON *:not(mark) {
- background-color: transparent !important;
- }
- .jp-RenderedJSON ul {
- margin: 0 !important;
- }
- .jp-RenderedJSON .container {
- position: relative;
- width: 100%;
- }
- .jp-RenderedJSON .filter {
- position: absolute;
- top: 0;
- right: 0;
- width: 33%;
- max-width: 150px;
- z-index: 10;
- }
- /* Document styles */
- .jp-MimeDocument .jp-RenderedJSON {
- padding: 5px 5px 5px 20px;
- overflow-y: auto;
- }
- /* Output styles */
- /* .jp-OutputArea .jp-RenderedJSON {
- } */
|