@jupyterlab/debugger
Version:
JupyterLab - Debugger Extension
53 lines (43 loc) • 1.1 kB
CSS
/*-----------------------------------------------------------------------------
| Copyright (c) Jupyter Development Team.
| Distributed under the terms of the Modified BSD License.
|----------------------------------------------------------------------------*/
.jp-DebuggerKernelSources {
min-height: 50px;
margin-top: 3px;
}
[data-jp-debugger='true'].jp-Editor .jp-mod-readOnly {
background: var(--jp-layout-color2);
height: 100%;
}
.jp-DebuggerKernelSources-body [data-jp-debugger='true'].jp-Editor {
height: 100%;
}
.jp-DebuggerKernelSources-body {
height: 100%;
overflow-y: auto;
}
.jp-DebuggerKernelSource-filterBox {
padding: 0;
flex: 0 0 auto;
margin: 0;
position: sticky;
top: 0;
background-color: var(--jp-layout-color1);
}
.jp-DebuggerKernelSource-filterBox-hidden {
display: none;
}
.jp-DebuggerKernelSource-source {
display: flex;
align-items: center;
padding: 4px;
cursor: pointer;
}
.jp-DebuggerKernelSource-source:hover {
background-color: var(--jp-layout-color2);
}
.jp-DebuggerKernelSource-source > svg {
height: 16px;
width: 16px;
}