12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- /*-----------------------------------------------------------------------------
- | Copyright (c) Jupyter Development Team.
- | Distributed under the terms of the Modified BSD License.
- |----------------------------------------------------------------------------*/
- .jp-DebuggerVariables header .jp-Toolbar {
- margin-left: auto;
- }
- .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);
- }
- .jp-detailsVariable-box {
- position: fixed;
- top: 30vh;
- left: 20vw;
- right: 0vw;
- width: 500px;
- z-index: 1253;
- background-color: white;
- text-align: center;
- border: 1px solid #c1c1c1;
- }
- .jp-detailsVariable-box #header {
- cursor: grab;
- font-weight: bold;
- background-color: #c1c1c1;
- }
- .jp-detailsVariable-box > button {
- margin-bottom: 10px;
- margin-top: 10px;
- }
|