1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- /**
- 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%;
- min-height: 30px;
- }
- .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 {
- } */
|