12345678910111213141516171819202122232425262728293031323334353637383940 |
- /*-----------------------------------------------------------------------------
- | Copyright (c) Jupyter Development Team.
- | Distributed under the terms of the Modified BSD License.
- |----------------------------------------------------------------------------*/
- .jp-DebuggerVariables-body {
- min-height: 24px;
- overflow: auto;
- }
- .jp-DebuggerVariables-body table {
- width: 100%;
- border-spacing: 0px;
- }
- .jp-DebuggerVariables-body table tbody,
- .jp-DebuggerVariables-body table thead {
- background: var(--jp-layout-color2);
- text-align: left;
- }
- .jp-DebuggerVariables-body table tbody tr:nth-child(2n + 1) {
- background-color: var(--jp-layout-color1);
- }
- .jp-DebuggerVariables-body table tbody td,
- .jp-DebuggerVariables-body table thead th {
- padding: 5px;
- border-right: 1px solid var(--jp-layout-color3);
- }
- .jp-DebuggerVariables-body table tbody td:last-child,
- .jp-DebuggerVariables-body table thead th:last-child {
- border-right: none;
- }
- .jp-DebuggerVariables-body table tbody td.selected {
- color: white;
- background: var(--jp-brand-color1);
- }
|