nodeList.scss 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. #nodeList {
  2. background: #333333;
  3. height: 100%;
  4. margin: 0;
  5. padding: 0;
  6. display: grid;
  7. width: 100%;
  8. overflow: hidden;
  9. .panes {
  10. overflow: hidden;
  11. .pane {
  12. color: white;
  13. overflow: hidden;
  14. height: 100%;
  15. -webkit-user-select: none;
  16. -moz-user-select: none;
  17. -ms-user-select: none;
  18. user-select: none;
  19. .filter {
  20. display: flex;
  21. align-items: stretch;
  22. input {
  23. width: 100%;
  24. margin: 10px 10px 5px 10px;
  25. display: block;
  26. border: none;
  27. padding: 0;
  28. border-bottom: solid 1px rgb(51, 122, 183);
  29. background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 96%, rgb(51, 122, 183) 4%);
  30. background-position: -1000px 0;
  31. background-size: 1000px 100%;
  32. background-repeat: no-repeat;
  33. color:white;
  34. }
  35. input:focus {
  36. box-shadow: none;
  37. outline: none;
  38. background-position: 0 0;
  39. }
  40. input::placeholder {
  41. color: gray;
  42. }
  43. }
  44. .list-container {
  45. overflow-x: hidden;
  46. overflow-y: auto;
  47. height: calc(100% - 32px);
  48. .underline {
  49. border-bottom: 0.5px solid rgba(255, 255, 255, 0.5);
  50. }
  51. .draggableLine {
  52. height: 30px;
  53. display: grid;
  54. align-items: center;
  55. justify-items: stretch;
  56. background: #222222;
  57. cursor: grab;
  58. text-align: center;
  59. margin: 0;
  60. box-sizing: border-box;
  61. &:hover {
  62. background: rgb(51, 122, 183);
  63. color: white;
  64. }
  65. }
  66. .buttonLine {
  67. height: 30px;
  68. display: grid;
  69. align-items: center;
  70. justify-items: stretch;
  71. button {
  72. background: #222222;
  73. margin: 5px 10px 5px 10px;
  74. color:white;
  75. padding: 4px 5px;
  76. opacity: 0.9;
  77. }
  78. button:hover {
  79. opacity: 1.0;
  80. }
  81. button:active {
  82. background: #282828;
  83. }
  84. button:focus {
  85. outline: 0px;
  86. }
  87. }
  88. .paneContainer {
  89. margin-top: 3px;
  90. display:grid;
  91. grid-template-rows: 100%;
  92. grid-template-columns: 100%;
  93. .paneContainer-content {
  94. grid-row: 1;
  95. grid-column: 1;
  96. .header {
  97. display: grid;
  98. grid-template-columns: 1fr auto;
  99. background: #555555;
  100. height: 30px;
  101. padding-right: 5px;
  102. cursor: pointer;
  103. .title {
  104. border-left: 3px solid transparent;
  105. padding-left: 5px;
  106. grid-column: 1;
  107. display: flex;
  108. align-items: center;
  109. }
  110. .collapse {
  111. grid-column: 2;
  112. display: flex;
  113. align-items: center;
  114. justify-items: center;
  115. transform-origin: center;
  116. &.closed {
  117. transform: rotate(180deg);
  118. }
  119. }
  120. }
  121. .paneList > div:not(:last-child) {
  122. border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  123. }
  124. }
  125. }
  126. }
  127. }
  128. }
  129. }