variables.css 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /*-----------------------------------------------------------------------------
  2. | Copyright (c) Jupyter Development Team.
  3. | Distributed under the terms of the Modified BSD License.
  4. |----------------------------------------------------------------------------*/
  5. .jp-DebuggerVariables-body {
  6. min-height: 24px;
  7. overflow: auto;
  8. }
  9. .jp-DebuggerVariables-body table {
  10. width: 100%;
  11. border-spacing: 0px;
  12. }
  13. .jp-DebuggerVariables-body table tbody,
  14. .jp-DebuggerVariables-body table thead {
  15. background: var(--jp-layout-color2);
  16. text-align: left;
  17. }
  18. .jp-DebuggerVariables-body table tbody tr:nth-child(2n + 1) {
  19. background-color: var(--jp-layout-color1);
  20. }
  21. .jp-DebuggerVariables-body table tbody td,
  22. .jp-DebuggerVariables-body table thead th {
  23. padding: 5px;
  24. border-right: 1px solid var(--jp-layout-color3);
  25. }
  26. .jp-DebuggerVariables-body table tbody td:last-child,
  27. .jp-DebuggerVariables-body table thead th:last-child {
  28. border-right: none;
  29. }
  30. .jp-DebuggerVariables-body table tbody td.selected {
  31. color: white;
  32. background: var(--jp-brand-color1);
  33. }