breakpoints.css 809 B

123456789101112131415161718192021222324252627282930313233
  1. /*-----------------------------------------------------------------------------
  2. | Copyright (c) Jupyter Development Team.
  3. | Distributed under the terms of the Modified BSD License.
  4. |----------------------------------------------------------------------------*/
  5. .jp-DebuggerBreakpoints-body {
  6. padding: 10px;
  7. }
  8. .jp-breakpoint-marker {
  9. position: absolute;
  10. left: -34px;
  11. top: -1px;
  12. color: var(--jp-error-color1);
  13. }
  14. .jp-breakpoint-line-highlight {
  15. background-color: var(--jp-warn-color0);
  16. }
  17. .CodeMirror-gutter-wrapper::after {
  18. content: '●';
  19. color: var(--jp-error-color1);
  20. opacity: 0;
  21. position: absolute;
  22. left: 3px;
  23. top: -1px;
  24. }
  25. .jp-CodeCell.jp-mod-selected .CodeMirror-gutter-wrapper:hover::after,
  26. .jp-Editor.jp-mod-focused .CodeMirror-gutter-wrapper:hover::after {
  27. opacity: 0.5;
  28. }