123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- /*-----------------------------------------------------------------------------
- | Copyright (c) Jupyter Development Team.
- | Distributed under the terms of the Modified BSD License.
- |----------------------------------------------------------------------------*/
- .jp-DebuggerVariables-body {
- border-bottom: solid var(--jp-border-width) var(--jp-border-color2);
- min-height: 24px;
- height: 99%;
- display: flex;
- flex-direction: column;
- }
- .jp-DebuggerVariables-table {
- min-height: 50px;
- flex-basis: 30%;
- }
- .jp-DebuggerVariables-table table {
- width: 100%;
- border-collapse: collapse;
- }
- .jp-DebuggerVariables-table table thead th {
- margin-bottom: 4px;
- border-top: var(--jp-border-width) solid var(--jp-border-color2);
- border-bottom: var(--jp-border-width) solid var(--jp-border-color2);
- min-height: 23px;
- padding: 4px 12px;
- font-weight: 500;
- text-align: left;
- }
- .jp-DebuggerVariables-table table thead th:not(:first-child) {
- border-left: var(--jp-border-width) solid var(--jp-border-color2);
- }
- .jp-DebuggerVariables-table table tbody tr td {
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- max-width: 0;
- padding-top: 4px;
- padding-bottom: 4px;
- }
- .jp-DebuggerVariables-table table tbody tr span {
- padding-right: 3px;
- }
- .jp-DebuggerVariables-table table th:hover,
- .jp-DebuggerVariables-table table tbody tr:not(.selected):hover {
- background: var(--jp-layout-color2);
- }
- .jp-DebuggerVariables-table table tr.selected {
- color: white;
- background: var(--jp-brand-color1);
- }
- .jp-DebuggerVariables-description {
- border-top: var(--jp-border-width) solid var(--jp-border-color2);
- min-height: 25px;
- padding: 10px;
- overflow: auto;
- }
- .jp-DebuggerVariables-description p {
- margin-top: 1rem;
- margin-bottom: 1rem;
- }
- .jp-DebuggerVariables-search {
- color: var(--jp-ui-font-color1);
- overflow: visible;
- flex: 0 0 auto;
- display: flex;
- flex-direction: row;
- height: 24px;
- align-items: center;
- }
- .jp-DebuggerVariables-search .jp-DebuggerVariables-input > div {
- display: flex;
- padding-left: 8px;
- padding-right: 8px;
- vertical-align: middle;
- font-size: 14px;
- line-height: 23px;
- align-items: baseline;
- }
- .jp-DebuggerVariables-search > .jp-DebuggerVariables-input {
- flex: 1 0 auto;
- }
- .jp-DebuggerVariables-search > .jp-DebuggerVariables-scope {
- flex: 0 0 auto;
- }
- .jp-DebuggerVariables-search input {
- min-height: 22px;
- vertical-align: top;
- width: 100%;
- height: 100%;
- border: none;
- padding-left: 10px;
- }
- .jp-DebuggerVariables-search .jp-DebuggerVariables-scope span.label {
- padding-left: 10px;
- padding-right: 5px;
- }
- .jp-DebuggerVariables ul {
- position: absolute;
- list-style: none;
- left: 0;
- right: 0;
- margin: 0;
- top: 20px;
- z-index: 10000;
- padding: 10px 10px;
- background: var(--jp-layout-color1);
- color: var(--jp-ui-font-color1);
- border: var(--jp-border-width) solid var(--jp-border-color1);
- font-size: var(--jp-ui-font-size1);
- box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.2);
- }
|