guiList.scss 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211
  1. #guiList {
  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. .nonDraggableLine {
  67. height: 30px;
  68. display: grid;
  69. align-items: center;
  70. justify-items: stretch;
  71. background: #222222;
  72. text-align: center;
  73. margin: 0;
  74. box-sizing: border-box;
  75. }
  76. .withButton {
  77. height: 30px;
  78. position: relative;
  79. .icon {
  80. position: absolute;
  81. right: 4px;
  82. top: 5px;
  83. &:hover {
  84. cursor: pointer;
  85. }
  86. .img {
  87. height: 17px;
  88. width: 17px;
  89. }
  90. }
  91. .buttonLine {
  92. height: 30px;
  93. display: grid;
  94. align-items: center;
  95. justify-items: stretch;
  96. padding-bottom: 5px;
  97. position: absolute;
  98. right: 0px;
  99. top: 2px;
  100. input[type="file"] {
  101. display: none;
  102. }
  103. .file-upload {
  104. background: transparent;
  105. border: transparent;
  106. padding: 15px 200px;
  107. opacity: 0.9;
  108. cursor: pointer;
  109. text-align: center;
  110. }
  111. .file-upload:hover {
  112. opacity: 1.0;
  113. }
  114. .file-upload:active {
  115. transform: scale(0.98);
  116. transform-origin: 0.5 0.5;
  117. }
  118. button {
  119. background: transparent;
  120. border: transparent;
  121. margin: 5px 10px 5px 10px;
  122. color:white;
  123. padding: 4px 5px;
  124. opacity: 0.9;
  125. }
  126. button:hover {
  127. opacity: 0.0;
  128. }
  129. button:active {
  130. background: transparent;
  131. }
  132. button:focus {
  133. border: transparent;
  134. outline: 0px;
  135. }
  136. }
  137. }
  138. .paneContainer {
  139. margin-top: 3px;
  140. display:grid;
  141. grid-template-rows: 100%;
  142. grid-template-columns: 100%;
  143. .paneContainer-content {
  144. grid-row: 1;
  145. grid-column: 1;
  146. .header {
  147. display: grid;
  148. grid-template-columns: 1fr auto;
  149. background: #555555;
  150. height: 30px;
  151. padding-right: 5px;
  152. cursor: pointer;
  153. .title {
  154. border-left: 3px solid transparent;
  155. padding-left: 5px;
  156. grid-column: 1;
  157. display: flex;
  158. align-items: center;
  159. }
  160. .collapse {
  161. grid-column: 2;
  162. display: flex;
  163. align-items: center;
  164. justify-items: center;
  165. transform-origin: center;
  166. &.closed {
  167. transform: rotate(180deg);
  168. }
  169. }
  170. }
  171. .paneList > div:not(:last-child) {
  172. border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  173. }
  174. }
  175. }
  176. }
  177. }
  178. }
  179. }