actionTabs.scss 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092
  1. $line-padding-left: 2px;
  2. #inspector-host {
  3. position: absolute;
  4. right: 0px;
  5. top:0px;
  6. bottom: 0px;
  7. }
  8. #__resizable_base__ {
  9. display: none;
  10. }
  11. #actionTabs {
  12. background: #333333;
  13. height: 100%;
  14. margin: 0;
  15. padding: 0;
  16. display: grid;
  17. grid-template-rows: auto 1fr;
  18. font: 14px "Arial";
  19. overflow: hidden;
  20. .hoverIcon:hover {
  21. opacity: 0.8;
  22. }
  23. #header {
  24. height: 30px;
  25. font-size: 16px;
  26. color: white;
  27. background: #222222;
  28. grid-row: 1;
  29. text-align: center;
  30. display: grid;
  31. grid-template-columns: 30px 1fr 50px;
  32. -webkit-user-select: none;
  33. -moz-user-select: none;
  34. -ms-user-select: none;
  35. user-select: none;
  36. #logo {
  37. grid-column: 1;
  38. width: 24px;
  39. height: 24px;
  40. display: flex;
  41. align-self: center;
  42. justify-self: center;
  43. }
  44. #back {
  45. grid-column: 1;
  46. display: grid;
  47. align-self: center;
  48. justify-self: center;
  49. cursor: pointer;
  50. }
  51. #title {
  52. grid-column: 2;
  53. display: grid;
  54. align-items: center;
  55. text-align: center;
  56. }
  57. #commands {
  58. grid-column: 3;
  59. display: grid;
  60. align-items: center;
  61. grid-template-columns: 1fr 1fr;
  62. .expand {
  63. grid-column: 1;
  64. display: grid;
  65. align-items: center;
  66. justify-items: center;
  67. cursor: pointer;
  68. }
  69. .close {
  70. grid-column: 2;
  71. display: grid;
  72. align-items: center;
  73. justify-items: center;
  74. cursor: pointer;
  75. }
  76. }
  77. }
  78. .tabs {
  79. display: grid;
  80. grid-row: 2;
  81. grid-template-rows: 40px 1fr;
  82. font: 14px "Arial";
  83. overflow: hidden;
  84. .labels {
  85. grid-row: 1;
  86. display: flex;
  87. align-items: center;
  88. justify-items: center;
  89. border-bottom: 1px solid #ffffff;
  90. margin: 0;
  91. padding: 0;
  92. .label {
  93. font-size: 24px;
  94. color: white;
  95. width: 40px;
  96. display: flex;
  97. align-content: center;
  98. justify-content: center;
  99. border: 1px solid transparent;
  100. border-bottom: none;
  101. background: #333333;
  102. padding: 5px;
  103. height: 28px;
  104. cursor: pointer;
  105. &.active {
  106. border-color: #ffffff;
  107. border-bottom: 2px solid transparent;
  108. margin-bottom: -2px;
  109. }
  110. }
  111. }
  112. .panes {
  113. grid-row: 2;
  114. display: grid;
  115. grid-template-rows: 100%;
  116. overflow: hidden;
  117. .infoMessage {
  118. opacity: 0.5;
  119. color: white;
  120. margin: 15px 5px 0px 5px;
  121. }
  122. .pane {
  123. color: white;
  124. overflow-x: hidden;
  125. overflow-y: auto;
  126. height: 100%;
  127. -webkit-user-select: none;
  128. -moz-user-select: none;
  129. -ms-user-select: none;
  130. user-select: none;
  131. .animation-info {
  132. border-left: greenyellow 3px solid;
  133. margin-left: 5px;
  134. padding-left: 5px !important;
  135. }
  136. .underline {
  137. border-bottom: 0.5px solid rgba(255, 255, 255, 0.5);
  138. }
  139. .textureLinkLine {
  140. display: grid;
  141. grid-template-columns: auto 1fr;
  142. .debug {
  143. grid-column: 1;
  144. margin-left: 5px;
  145. margin-right: 5px;
  146. display: block;
  147. align-items: center;
  148. justify-items: center;
  149. cursor: pointer;
  150. opacity: 0.5;
  151. &.selected {
  152. opacity: 1.0;
  153. }
  154. }
  155. .textLine {
  156. grid-column: 2;
  157. }
  158. .actionIcon {
  159. display : inline-block;
  160. margin-top : 6px;
  161. margin-right : 4px;
  162. }
  163. }
  164. .messageLine {
  165. text-align: center;
  166. font-size: 12px;
  167. font-style: italic;
  168. opacity: 0.6;
  169. }
  170. .iconMessageLine {
  171. padding-left: $line-padding-left;
  172. height: 30px;
  173. display: grid;
  174. grid-template-columns: 30px 1fr;
  175. .icon {
  176. grid-column: 1;
  177. display: grid;
  178. align-items: center;
  179. justify-items: center;
  180. }
  181. .value {
  182. grid-column: 2;
  183. display: flex;
  184. align-items: center;
  185. }
  186. }
  187. .color-picker {
  188. height: calc(100% - 8px);
  189. margin: 4px;
  190. width: 100%;
  191. .color-rect {
  192. height: calc(100% - 4px);
  193. border: 2px white solid;
  194. cursor: pointer;
  195. min-height: 18px;
  196. }
  197. .color-picker-cover {
  198. position: fixed;
  199. top: 0px;
  200. right: 0px;
  201. bottom: 0px;
  202. left: 0px;
  203. z-index: 100;
  204. }
  205. .color-picker-float {
  206. position: absolute;
  207. }
  208. }
  209. .linkButtonLine {
  210. padding-left: $line-padding-left;
  211. height: 30px;
  212. display: grid;
  213. grid-template-columns: 1fr auto 20px;
  214. .link {
  215. grid-column: 1;
  216. display: flex;
  217. align-items: center;
  218. text-decoration: underline;
  219. cursor: pointer;
  220. }
  221. .link-button {
  222. grid-column: 2;
  223. button {
  224. background: #222222;
  225. border: 1px solid rgb(51, 122, 183);
  226. margin: 5px 10px 5px 10px;
  227. color:white;
  228. padding: 4px 5px;
  229. opacity: 0.9;
  230. cursor: pointer;
  231. }
  232. button:hover {
  233. opacity: 1.0;
  234. }
  235. button:active {
  236. background: #282828;
  237. }
  238. button:focus {
  239. border: 1px solid rgb(51, 122, 183);
  240. outline: 0px;
  241. }
  242. }
  243. .link-icon{
  244. grid-column: 3;
  245. display: grid;
  246. align-content: center;
  247. }
  248. }
  249. .textLine {
  250. padding-left: $line-padding-left;
  251. height: 30px;
  252. display: grid;
  253. grid-template-columns: 1fr auto;
  254. &.indented {
  255. grid-template-columns: 100%;
  256. .link-value {
  257. grid-column: 1;
  258. text-align: start;
  259. margin-left: 20px;
  260. opacity: 0.6;
  261. max-width: unset;
  262. }
  263. .value {
  264. grid-column: 1;
  265. text-align: start;
  266. margin-left: 20px;
  267. opacity: 0.6;
  268. max-width: unset;
  269. }
  270. }
  271. &.reduced-opacity {
  272. opacity: 0.6;
  273. padding-left: 25px;
  274. }
  275. .label {
  276. grid-column: 1;
  277. display: flex;
  278. align-items: center;
  279. }
  280. .link-value {
  281. grid-column: 2;
  282. white-space: nowrap;
  283. text-overflow: ellipsis;
  284. overflow: hidden;
  285. text-align: end;
  286. opacity: 0.8;
  287. margin:5px;
  288. margin-top: 7px;
  289. max-width: 140px;
  290. text-decoration: underline;
  291. cursor: pointer;
  292. }
  293. .value {
  294. grid-column: 2;
  295. white-space: nowrap;
  296. text-overflow: ellipsis;
  297. overflow: hidden;
  298. text-align: end;
  299. opacity: 0.8;
  300. margin:5px;
  301. margin-top: 7px;
  302. max-width: 200px;
  303. -webkit-user-select: text;
  304. -moz-user-select: text;
  305. -ms-user-select: text;
  306. user-select: text;
  307. &.check {
  308. color: green;
  309. }
  310. &.uncheck {
  311. color: red;
  312. }
  313. }
  314. }
  315. .gradient-container {
  316. margin-top: 3px;
  317. .gradient-label {
  318. height: 30px;
  319. display: grid;
  320. align-content: center;
  321. }
  322. .gradient-step {
  323. display: grid;
  324. grid-template-rows: 100%;
  325. grid-template-columns: 25px 50px 55px 40px auto 20px 5px;
  326. padding-top: 5px;
  327. padding-left: 5px;
  328. padding-bottom: 5px;
  329. align-items: center;
  330. border-left: orange 3px solid;
  331. .step {
  332. grid-row: 1;
  333. grid-column: 1;
  334. }
  335. .color1 {
  336. height: 100%;
  337. }
  338. .color2{
  339. height: 100%;
  340. padding-left: 5px;
  341. }
  342. .factor1 {
  343. grid-row: 1;
  344. grid-column: 2;
  345. cursor: pointer;
  346. }
  347. .factor2 {
  348. padding-left: 5px;
  349. grid-row: 1;
  350. grid-column: 3;
  351. cursor: pointer;
  352. .grayed {
  353. background: gray;
  354. border-color: gray;
  355. }
  356. }
  357. .numeric-input {
  358. width: calc(100% - 5px);
  359. }
  360. .step-value {
  361. margin-left: 5px;
  362. grid-row: 1;
  363. grid-column: 4;
  364. text-align: right;
  365. margin-right: 5px;
  366. }
  367. .step-slider {
  368. grid-row: 1;
  369. grid-column: 5;
  370. display: grid;
  371. justify-content: stretch;
  372. align-content: center;
  373. margin-right: 5px;
  374. input {
  375. width: 100%;
  376. }
  377. }
  378. .gradient-delete {
  379. grid-row: 1;
  380. grid-column: 6;
  381. display: grid;
  382. align-content: center;
  383. justify-content: center;
  384. }
  385. }
  386. }
  387. .textInputLine {
  388. padding-left: $line-padding-left;
  389. height: 30px;
  390. display: grid;
  391. grid-template-columns: 1fr 120px;
  392. .label {
  393. grid-column: 1;
  394. display: flex;
  395. align-items: center;
  396. }
  397. .value {
  398. display: flex;
  399. align-items: center;
  400. grid-column: 2;
  401. input {
  402. width: 110px;
  403. }
  404. }
  405. }
  406. .buttonLine {
  407. height: 30px;
  408. display: grid;
  409. align-items: center;
  410. justify-items: stretch;
  411. input[type="file"] {
  412. display: none;
  413. }
  414. .file-upload {
  415. background: #222222;
  416. border: 1px solid rgb(51, 122, 183);
  417. margin: 5px 10px 5px 10px;
  418. color:white;
  419. padding: 4px 5px;
  420. opacity: 0.9;
  421. cursor: pointer;
  422. text-align: center;
  423. }
  424. .file-upload:hover {
  425. opacity: 1.0;
  426. }
  427. .file-upload:active {
  428. transform: scale(0.98);
  429. transform-origin: 0.5 0.5;
  430. }
  431. button {
  432. background: #222222;
  433. border: 1px solid rgb(51, 122, 183);
  434. margin: 5px 10px 5px 10px;
  435. color:white;
  436. padding: 4px 5px;
  437. opacity: 0.9;
  438. cursor: pointer;
  439. }
  440. button:hover {
  441. opacity: 1.0;
  442. }
  443. button:active {
  444. background: #282828;
  445. }
  446. button:focus {
  447. border: 1px solid rgb(51, 122, 183);
  448. outline: 0px;
  449. }
  450. }
  451. .radioLine {
  452. padding-left: $line-padding-left;
  453. height: 30px;
  454. display: grid;
  455. grid-template-columns: 1fr 24px;
  456. .label {
  457. grid-column: 1;
  458. display: flex;
  459. align-items: center;
  460. }
  461. .radioContainer {
  462. display: flex;
  463. align-items: center;
  464. .radio {
  465. grid-column: 2;
  466. display: none;
  467. &:checked + label:before {
  468. border-color: rgb(51, 122, 183);
  469. }
  470. &:checked + label:after {
  471. transform: scale(1);
  472. }
  473. }
  474. .labelForRadio {
  475. display: inline-block;
  476. height: 14px;
  477. position: relative;
  478. padding: 0 24px;
  479. margin-bottom: 0;
  480. cursor: pointer;
  481. vertical-align: bottom;
  482. &:before, &:after {
  483. position: absolute;
  484. content: '';
  485. border-radius: 50%;
  486. transition: all .3s ease;
  487. transition-property: transform, border-color;
  488. }
  489. &:before {
  490. left: 0px;
  491. top: 0;
  492. width: 16px;
  493. height: 16px;
  494. border: 2px solid white;
  495. }
  496. &:after {
  497. top: 6px;
  498. left: 6px;
  499. width: 8px;
  500. height: 8px;
  501. transform: scale(0);
  502. background:rgb(51, 122, 183);
  503. }
  504. }
  505. }
  506. }
  507. .vector3Line {
  508. padding-left:$line-padding-left;
  509. display: grid;
  510. .firstLine {
  511. display: grid;
  512. grid-template-columns: 1fr auto 20px;
  513. height: 30px;
  514. .label {
  515. grid-column: 1;
  516. display: flex;
  517. align-items: center;
  518. }
  519. .vector {
  520. grid-column: 2;
  521. display: flex;
  522. align-items: center;
  523. text-align: right;
  524. opacity: 0.8;
  525. }
  526. .expand {
  527. grid-column: 3;
  528. display: grid;
  529. align-items: center;
  530. justify-items: center;
  531. cursor: pointer;
  532. }
  533. }
  534. .secondLine {
  535. display: grid;
  536. padding-right: 5px;
  537. border-left: 1px solid rgb(51, 122, 183);
  538. .numeric {
  539. display: grid;
  540. grid-template-columns: 1fr auto;
  541. }
  542. .numeric-label {
  543. text-align: right;
  544. grid-column: 1;
  545. display: flex;
  546. align-items: center;
  547. justify-self: right;
  548. margin-right: 10px;
  549. }
  550. .numeric-value {
  551. width: 120px;
  552. grid-column: 2;
  553. display: flex;
  554. align-items: center;
  555. border: 1px solid rgb(51, 122, 183);
  556. }
  557. }
  558. }
  559. .checkBoxLine {
  560. padding-left: $line-padding-left;
  561. height: 30px;
  562. display: grid;
  563. grid-template-columns: 1fr auto;
  564. .label {
  565. grid-column: 1;
  566. display: flex;
  567. align-items: center;
  568. }
  569. .checkBox {
  570. grid-column: 2;
  571. display: flex;
  572. align-items: center;
  573. .lbl {
  574. position: relative;
  575. display: block;
  576. height: 14px;
  577. width: 34px;
  578. margin-right: 5px;
  579. background: #898989;
  580. border-radius: 100px;
  581. cursor: pointer;
  582. transition: all 0.3s ease;
  583. }
  584. .lbl:after {
  585. position: absolute;
  586. left: 3px;
  587. top: 2px;
  588. display: block;
  589. width: 10px;
  590. height: 10px;
  591. border-radius: 100px;
  592. background: #fff;
  593. box-shadow: 0px 3px 3px rgba(0,0,0,0.05);
  594. content: '';
  595. transition: all 0.15s ease;
  596. }
  597. .lbl:active:after {
  598. transform: scale(1.15, 0.85);
  599. }
  600. .cbx:checked ~ label {
  601. background: rgb(51, 122, 183);
  602. }
  603. .cbx:checked ~ label:after {
  604. left: 20px;
  605. background: rgb(22, 73, 117);
  606. }
  607. .hidden {
  608. display: none;
  609. }
  610. }
  611. }
  612. .textureLine {
  613. display: grid;
  614. grid-template-rows: 30px auto;
  615. .control {
  616. margin-top: 2px;
  617. grid-row: 1;
  618. display: grid;
  619. grid-template-columns: 1fr 40px 40px 40px 40px 40px 1fr;
  620. .red {
  621. grid-column: 2;
  622. }
  623. .green {
  624. grid-column: 3;
  625. }
  626. .blue {
  627. grid-column: 4;
  628. }
  629. .alpha {
  630. grid-column: 5;
  631. }
  632. .all {
  633. grid-column: 6;
  634. }
  635. }
  636. .control3D {
  637. margin-top: 2px;
  638. grid-row: 1;
  639. display: grid;
  640. grid-template-columns: 1fr 40px 40px 40px 40px 40px 40px 1fr;
  641. .px {
  642. grid-column: 2;
  643. }
  644. .nx {
  645. grid-column: 3;
  646. }
  647. .py {
  648. grid-column: 4;
  649. }
  650. .ny {
  651. grid-column: 5;
  652. }
  653. .pz {
  654. grid-column: 6;
  655. }
  656. .nz {
  657. grid-column: 7;
  658. }
  659. }
  660. .command {
  661. border: 1px solid transparent;
  662. background:transparent;
  663. color: white;
  664. }
  665. .selected {
  666. border: 1px solid rgb(51, 122, 183);
  667. }
  668. .preview {
  669. grid-row: 2;
  670. display: grid;
  671. align-self: center;
  672. justify-self: center;
  673. height: 256px;
  674. width: 256px;
  675. margin-top: 5px;
  676. margin-bottom: 5px;
  677. border: 2px solid rgba(255, 255, 255, 0.4);
  678. }
  679. }
  680. .gltf-extension-property {
  681. margin-left: 30px;
  682. border-left: 1px solid rgb(51, 122, 183);
  683. }
  684. .floatLine {
  685. padding-left: $line-padding-left;
  686. height: 30px;
  687. display: grid;
  688. grid-template-columns: 1fr 120px;
  689. .label {
  690. grid-column: 1;
  691. display: flex;
  692. align-items: center;
  693. }
  694. .value {
  695. grid-column: 2;
  696. display: flex;
  697. align-items: center;
  698. input {
  699. width: 110px;
  700. }
  701. }
  702. }
  703. .sliderLine {
  704. padding-left: 2px;
  705. height: 30px;
  706. display: grid;
  707. grid-template-columns: 1fr auto;
  708. .label {
  709. grid-column: 1;
  710. display: flex;
  711. align-items: center;
  712. }
  713. .slider {
  714. grid-column: 2;
  715. margin-right: 5px;
  716. display: flex;
  717. align-items: center;
  718. .range {
  719. -webkit-appearance: none;
  720. width: 120px;
  721. height: 6px;
  722. background: #d3d3d3;
  723. border-radius: 5px;
  724. outline: none;
  725. opacity: 0.7;
  726. -webkit-transition: .2s;
  727. transition: opacity .2s;
  728. }
  729. .range:hover {
  730. opacity: 1;
  731. }
  732. .range::-webkit-slider-thumb {
  733. -webkit-appearance: none;
  734. appearance: none;
  735. width: 14px;
  736. height: 14px;
  737. border-radius: 50%;
  738. background: rgb(51, 122, 183);
  739. cursor: pointer;
  740. }
  741. .range::-moz-range-thumb {
  742. width: 14px;
  743. height: 14px;
  744. border-radius: 50%;
  745. background: rgb(51, 122, 183);
  746. cursor: pointer;
  747. }
  748. }
  749. }
  750. .color3Line {
  751. padding-left: $line-padding-left;
  752. display: grid;
  753. .firstLine {
  754. height: 30px;
  755. display: grid;
  756. grid-template-columns: 1fr auto 20px 20px;
  757. .label {
  758. grid-column: 1;
  759. display: flex;
  760. align-items: center;
  761. }
  762. .color3 {
  763. grid-column: 2;
  764. width: 50px;
  765. display: flex;
  766. align-items: center;
  767. input[type="color"] {
  768. -webkit-appearance: none;
  769. border: 1px solid rgba(255, 255, 255, 0.5);
  770. padding: 0;
  771. width: 30px;
  772. height: 20px;
  773. }
  774. input[type="color"]::-webkit-color-swatch-wrapper {
  775. padding: 0;
  776. }
  777. input[type="color"]::-webkit-color-swatch {
  778. border: none;
  779. }
  780. input {
  781. margin-right: 5px;
  782. }
  783. }
  784. .copy {
  785. grid-column: 3;
  786. display: grid;
  787. align-items: center;
  788. justify-items: center;
  789. cursor: pointer;
  790. img {
  791. height: 100%;
  792. }
  793. }
  794. .expand {
  795. grid-column: 4;
  796. display: grid;
  797. align-items: center;
  798. justify-items: center;
  799. cursor: pointer;
  800. }
  801. }
  802. .secondLine {
  803. display: grid;
  804. padding-right: 5px;
  805. border-left: 1px solid rgb(51, 122, 183);
  806. .numeric {
  807. display: grid;
  808. grid-template-columns: 1fr auto;
  809. }
  810. .numeric-label {
  811. text-align: right;
  812. grid-column: 1;
  813. display: flex;
  814. align-items: center;
  815. justify-self: right;
  816. margin-right: 10px;
  817. }
  818. .numeric-value {
  819. width: 120px;
  820. grid-column: 2;
  821. display: flex;
  822. align-items: center;
  823. border: 1px solid rgb(51, 122, 183);
  824. }
  825. }
  826. }
  827. .listLine {
  828. padding-left: $line-padding-left;
  829. height: 30px;
  830. display: grid;
  831. grid-template-columns: 1fr auto;
  832. .label {
  833. grid-column: 1;
  834. display: flex;
  835. align-items: center;
  836. }
  837. .options {
  838. grid-column: 2;
  839. display: flex;
  840. align-items: center;
  841. margin-right: 5px;
  842. select {
  843. width: 115px;
  844. }
  845. }
  846. }
  847. .paneContainer {
  848. margin-top: 3px;
  849. display:grid;
  850. grid-template-rows: 100%;
  851. grid-template-columns: 100%;
  852. .paneList {
  853. border-left: 3px solid transparent;
  854. }
  855. &:hover {
  856. .paneList {
  857. border-left: 3px solid rgba(51, 122, 183, 0.8);
  858. }
  859. .paneContainer-content {
  860. .header {
  861. .title {
  862. border-left: 3px solid rgb(51, 122, 183);
  863. }
  864. }
  865. }
  866. }
  867. .paneContainer-highlight-border {
  868. grid-row: 1;
  869. grid-column: 1;
  870. opacity: 1;
  871. border: 3px solid red;
  872. margin-bottom: -5px;
  873. z-index: 100;
  874. transition: opacity 250ms;
  875. pointer-events: none;
  876. &.transparent {
  877. opacity: 0;
  878. }
  879. }
  880. .paneContainer-content {
  881. grid-row: 1;
  882. grid-column: 1;
  883. .header {
  884. display: grid;
  885. grid-template-columns: 1fr auto;
  886. background: #555555;
  887. height: 30px;
  888. padding-right: 5px;
  889. cursor: pointer;
  890. .title {
  891. border-left: 3px solid transparent;
  892. padding-left: 5px;
  893. grid-column: 1;
  894. display: flex;
  895. align-items: center;
  896. }
  897. .collapse {
  898. grid-column: 2;
  899. display: flex;
  900. align-items: center;
  901. justify-items: center;
  902. transform-origin: center;
  903. &.closed {
  904. transform: rotate(180deg);
  905. }
  906. }
  907. }
  908. .paneList > div:not(:last-child) {
  909. border-bottom: 0.5px solid rgba(255, 255, 255, 0.1);
  910. }
  911. .fragment > div:not(:last-child) {
  912. border-bottom: 0.5px solid rgba(255, 255, 255, 0.1);
  913. }
  914. }
  915. }
  916. }
  917. }
  918. }
  919. }