123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- /*-----------------------------------------------------------------------------
- | 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 ul {
- list-style: none;
- margin: 0;
- padding: 0.5em;
- }
- .jp-DebuggerVariables-body ul li {
- padding: 5px;
- cursor: pointer;
- color: var(--jp-content-font-color1);
- }
- .jp-DebuggerVariables-body ul li .caret {
- display: inline-block;
- color: var(--jp-content-font-color2);
- font-size: 12px;
- margin-right: 3px;
- user-select: none;
- }
- .jp-DebuggerVariables header .jp-Toolbar {
- margin-left: auto;
- }
- .jp-DebuggerVariableDetails {
- color: var(--jp-ui-font-color1);
- font-size: var(--jp-ui-font-size1);
- overflow: auto;
- }
- .jp-DebuggerVariableDetails table,
- .jp-DebuggerVariables-body table {
- width: 100%;
- border-spacing: 0px;
- }
- .jp-DebuggerVariableDetails table tbody,
- .jp-DebuggerVariableDetails table thead,
- .jp-DebuggerVariables-body table tbody,
- .jp-DebuggerVariables-body table thead {
- background: var(--jp-layout-color2);
- text-align: left;
- }
- .jp-DebuggerVariableDetails table tbody tr:nth-child(2n + 1),
- .jp-DebuggerVariables-body table tbody tr:nth-child(2n + 1) {
- background-color: var(--jp-layout-color1);
- }
- .jp-DebuggerVariableDetails table tbody td,
- .jp-DebuggerVariableDetails table thead th,
- .jp-DebuggerVariables-body table tbody td,
- .jp-DebuggerVariables-body table thead th {
- padding: 5px;
- border-right: 1px solid var(--jp-layout-color3);
- }
- .jp-DebuggerVariableDetails table tbody td:last-child,
- .jp-DebuggerVariableDetails table thead th:last-child,
- .jp-DebuggerVariables-body table tbody td:last-child,
- .jp-DebuggerVariables-body table thead th:last-child {
- border-right: none;
- }
- .jp-DebuggerVariableDetails table tbody td.selected,
- .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;
- }
|