1234567891011121314151617181920212223242526272829303132 |
- /*-----------------------------------------------------------------------------
- | Copyright (c) Jupyter Development Team.
- | Distributed under the terms of the Modified BSD License.
- |----------------------------------------------------------------------------*/
- .jp-DebuggerBreakpoints-body {
- padding: 10px;
- }
- .jp-breakpoint-marker {
- position: absolute;
- left: -35px;
- top: -1px;
- color: var(--jp-error-color1);
- }
- .jp-breakpoint-line-highlight {
- background-color: var(--jp-warn-color0);
- }
- .CodeMirror-gutter-wrapper::after {
- content: '●';
- color: var(--jp-error-color1);
- opacity: 0;
- position: absolute;
- left: 3px;
- top: -1px;
- }
- .CodeMirror-gutter-wrapper:hover::after {
- opacity: 0.5;
- }
|