variables.css 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. /*-----------------------------------------------------------------------------
  2. | Copyright (c) Jupyter Development Team.
  3. | Distributed under the terms of the Modified BSD License.
  4. |----------------------------------------------------------------------------*/
  5. .jp-DebuggerVariables header .jp-Toolbar {
  6. margin-left: auto;
  7. }
  8. .jp-DebuggerVariables-body {
  9. min-height: 24px;
  10. overflow: auto;
  11. }
  12. .jp-DebuggerVariables-body table {
  13. width: 100%;
  14. border-spacing: 0px;
  15. }
  16. .jp-DebuggerVariables-body table tbody,
  17. .jp-DebuggerVariables-body table thead {
  18. background: var(--jp-layout-color2);
  19. text-align: left;
  20. }
  21. .jp-DebuggerVariables-body table tbody tr:nth-child(2n + 1) {
  22. background-color: var(--jp-layout-color1);
  23. }
  24. .jp-DebuggerVariables-body table tbody td,
  25. .jp-DebuggerVariables-body table thead th {
  26. padding: 5px;
  27. border-right: 1px solid var(--jp-layout-color3);
  28. }
  29. .jp-DebuggerVariables-body table tbody td:last-child,
  30. .jp-DebuggerVariables-body table thead th:last-child {
  31. border-right: none;
  32. }
  33. .jp-DebuggerVariables-body table tbody td.selected {
  34. color: white;
  35. background: var(--jp-brand-color1);
  36. }
  37. .jp-detailsVariable-box {
  38. position: fixed;
  39. top: 30vh;
  40. left: 20vw;
  41. right: 0vw;
  42. width: 500px;
  43. z-index: 1253;
  44. background-color: white;
  45. text-align: center;
  46. border: 1px solid #c1c1c1;
  47. }
  48. .jp-detailsVariable-box #header {
  49. cursor: grab;
  50. font-weight: bold;
  51. background-color: #c1c1c1;
  52. }
  53. .jp-detailsVariable-box > button {
  54. margin-bottom: 10px;
  55. margin-top: 10px;
  56. }