variables.css 2.4 KB

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