variables.css 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. /*-----------------------------------------------------------------------------
  2. | Copyright (c) Jupyter Development Team.
  3. | Distributed under the terms of the Modified BSD License.
  4. |----------------------------------------------------------------------------*/
  5. .jp-DebuggerVariables {
  6. display: flex;
  7. flex-direction: column;
  8. }
  9. .jp-DebuggerVariables-body {
  10. display: flex;
  11. flex-direction: column;
  12. flex: 1 1 auto;
  13. min-height: 24px;
  14. overflow: auto;
  15. }
  16. .jp-DebuggerVariables-body ul {
  17. list-style: none;
  18. margin: 0;
  19. padding: 0;
  20. }
  21. .jp-DebuggerVariables-body > ul {
  22. padding-top: 0.1em;
  23. }
  24. .jp-DebuggerVariables-body ul li {
  25. padding: 5px 0 0 0;
  26. cursor: pointer;
  27. color: var(--jp-content-font-color1);
  28. }
  29. .jp-DebuggerVariables-body ul li > ul {
  30. margin-left: 12px;
  31. }
  32. .jp-DebuggerVariables .jp-stack-panel-header .jp-Toolbar {
  33. margin-left: auto;
  34. }
  35. .jp-DebuggerVariables-grid {
  36. flex: 1 1 auto;
  37. }
  38. .jp-DebuggerVariables-grid .lm-DataGrid {
  39. border: none;
  40. }
  41. .jp-DebuggerVariables-colorPalette {
  42. visibility: hidden;
  43. z-index: -999;
  44. position: absolute;
  45. left: -999;
  46. top: -999;
  47. }
  48. .jp-DebuggerVariables-colorPalette .jp-mod-void {
  49. color: var(--jp-layout-color1);
  50. }
  51. .jp-DebuggerVariables-colorPalette .jp-mod-background {
  52. color: var(--jp-rendermime-table-row-background);
  53. }
  54. .jp-DebuggerVariables-colorPalette .jp-mod-header-background {
  55. color: var(--jp-layout-color2);
  56. }
  57. .jp-DebuggerVariables-colorPalette .jp-mod-grid-line {
  58. color: var(--jp-border-color3);
  59. }
  60. .jp-DebuggerVariables-colorPalette .jp-mod-header-grid-line {
  61. color: var(--jp-border-color3);
  62. }
  63. .jp-DebuggerVariables-colorPalette .jp-mod-selection {
  64. /* TODO: Fix JupyterLab light theme (alpha) so this can be a variable. */
  65. color: rgba(3, 169, 244, 0.2);
  66. }
  67. .jp-DebuggerVariables-colorPalette .jp-mod-text {
  68. color: var(--jp-content-font-color0);
  69. }