variables.css 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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 ul {
  10. list-style: none;
  11. margin: 0;
  12. padding: 0.5em;
  13. }
  14. .jp-DebuggerVariables-body ul li {
  15. padding: 5px 0 5px 0;
  16. cursor: pointer;
  17. color: var(--jp-content-font-color1);
  18. }
  19. .jp-DebuggerVariables header .jp-Toolbar {
  20. margin-left: auto;
  21. }
  22. .jp-DebuggerVariableDetails {
  23. color: var(--jp-ui-font-color1);
  24. font-size: var(--jp-ui-font-size1);
  25. }
  26. .jp-DebuggerVariableDetails table,
  27. .jp-DebuggerVariables-body table {
  28. width: 100%;
  29. border-spacing: 0px;
  30. }
  31. .jp-DebuggerVariableDetails table tbody,
  32. .jp-DebuggerVariableDetails table thead,
  33. .jp-DebuggerVariables-body table tbody,
  34. .jp-DebuggerVariables-body table thead {
  35. background: var(--jp-layout-color2);
  36. text-align: left;
  37. }
  38. .jp-DebuggerVariableDetails table tbody tr:nth-child(2n + 1),
  39. .jp-DebuggerVariables-body table tbody tr:nth-child(2n + 1) {
  40. background-color: var(--jp-layout-color1);
  41. }
  42. .jp-DebuggerVariableDetails table tbody td,
  43. .jp-DebuggerVariableDetails table thead th,
  44. .jp-DebuggerVariables-body table tbody td,
  45. .jp-DebuggerVariables-body table thead th {
  46. padding: 5px;
  47. border-right: 1px solid var(--jp-layout-color3);
  48. }
  49. .jp-DebuggerVariableDetails table tbody td:last-child,
  50. .jp-DebuggerVariableDetails table thead th:last-child,
  51. .jp-DebuggerVariables-body table tbody td:last-child,
  52. .jp-DebuggerVariables-body table thead th:last-child {
  53. border-right: none;
  54. }
  55. .jp-DebuggerVariableDetails table tbody td.selected,
  56. .jp-DebuggerVariables-body table tbody td.selected {
  57. color: white;
  58. background: var(--jp-brand-color1);
  59. }
  60. .jp-detailsVariable-box {
  61. position: fixed;
  62. top: 30vh;
  63. left: 20vw;
  64. right: 0vw;
  65. width: 500px;
  66. z-index: 1253;
  67. background-color: white;
  68. text-align: center;
  69. border: 1px solid #c1c1c1;
  70. }
  71. .jp-detailsVariable-box #header {
  72. cursor: grab;
  73. font-weight: bold;
  74. background-color: #c1c1c1;
  75. }
  76. .jp-detailsVariable-box > button {
  77. margin-bottom: 10px;
  78. margin-top: 10px;
  79. }