actionTabs.scss 37 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096
  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. font-size: 13px;
  421. opacity: 0.9;
  422. cursor: pointer;
  423. text-align: center;
  424. }
  425. .file-upload:hover {
  426. opacity: 1.0;
  427. }
  428. .file-upload:active {
  429. transform: scale(0.98);
  430. transform-origin: 0.5 0.5;
  431. }
  432. button {
  433. background: #222222;
  434. border: 1px solid rgb(51, 122, 183);
  435. margin: 5px 10px 5px 10px;
  436. color:white;
  437. padding: 4px 5px;
  438. opacity: 0.9;
  439. cursor: pointer;
  440. }
  441. button:hover {
  442. opacity: 1.0;
  443. }
  444. button:active {
  445. background: #282828;
  446. }
  447. button:focus {
  448. border: 1px solid rgb(51, 122, 183);
  449. outline: 0px;
  450. }
  451. }
  452. .radioLine {
  453. padding-left: $line-padding-left;
  454. height: 30px;
  455. display: grid;
  456. grid-template-columns: 1fr 24px;
  457. .label {
  458. grid-column: 1;
  459. display: flex;
  460. align-items: center;
  461. }
  462. .radioContainer {
  463. display: flex;
  464. align-items: center;
  465. .radio {
  466. grid-column: 2;
  467. display: none;
  468. &:checked + label:before {
  469. border-color: rgb(51, 122, 183);
  470. }
  471. &:checked + label:after {
  472. transform: scale(1);
  473. }
  474. }
  475. .labelForRadio {
  476. display: inline-block;
  477. height: 14px;
  478. position: relative;
  479. padding: 0 24px;
  480. margin-bottom: 0;
  481. cursor: pointer;
  482. vertical-align: bottom;
  483. &:before, &:after {
  484. position: absolute;
  485. content: '';
  486. border-radius: 50%;
  487. transition: all .3s ease;
  488. transition-property: transform, border-color;
  489. }
  490. &:before {
  491. left: 0px;
  492. top: 0;
  493. width: 16px;
  494. height: 16px;
  495. border: 2px solid white;
  496. }
  497. &:after {
  498. top: 6px;
  499. left: 6px;
  500. width: 8px;
  501. height: 8px;
  502. transform: scale(0);
  503. background:rgb(51, 122, 183);
  504. }
  505. }
  506. }
  507. }
  508. .vector3Line {
  509. padding-left:$line-padding-left;
  510. display: grid;
  511. .firstLine {
  512. display: grid;
  513. grid-template-columns: 1fr auto 20px;
  514. height: 30px;
  515. .label {
  516. grid-column: 1;
  517. display: flex;
  518. align-items: center;
  519. }
  520. .vector {
  521. grid-column: 2;
  522. display: flex;
  523. align-items: center;
  524. text-align: right;
  525. opacity: 0.8;
  526. }
  527. .expand {
  528. grid-column: 3;
  529. display: grid;
  530. align-items: center;
  531. justify-items: center;
  532. cursor: pointer;
  533. }
  534. }
  535. .secondLine {
  536. display: grid;
  537. padding-right: 5px;
  538. border-left: 1px solid rgb(51, 122, 183);
  539. .numeric {
  540. display: grid;
  541. grid-template-columns: 1fr auto;
  542. }
  543. .numeric-label {
  544. text-align: right;
  545. grid-column: 1;
  546. display: flex;
  547. align-items: center;
  548. justify-self: right;
  549. margin-right: 10px;
  550. }
  551. .numeric-value {
  552. width: 120px;
  553. grid-column: 2;
  554. display: flex;
  555. align-items: center;
  556. border: 1px solid rgb(51, 122, 183);
  557. }
  558. }
  559. }
  560. .checkBoxLine {
  561. padding-left: $line-padding-left;
  562. height: 30px;
  563. display: grid;
  564. grid-template-columns: 1fr auto;
  565. .label {
  566. grid-column: 1;
  567. display: flex;
  568. align-items: center;
  569. }
  570. .checkBox {
  571. grid-column: 2;
  572. display: flex;
  573. align-items: center;
  574. .lbl {
  575. position: relative;
  576. display: block;
  577. height: 14px;
  578. width: 34px;
  579. margin-right: 5px;
  580. background: #898989;
  581. border-radius: 100px;
  582. cursor: pointer;
  583. transition: all 0.3s ease;
  584. }
  585. .lbl:after {
  586. position: absolute;
  587. left: 3px;
  588. top: 2px;
  589. display: block;
  590. width: 10px;
  591. height: 10px;
  592. border-radius: 100px;
  593. background: #fff;
  594. box-shadow: 0px 3px 3px rgba(0,0,0,0.05);
  595. content: '';
  596. transition: all 0.15s ease;
  597. }
  598. .lbl:active:after {
  599. transform: scale(1.15, 0.85);
  600. }
  601. .cbx:checked ~ label {
  602. background: rgb(51, 122, 183);
  603. }
  604. .cbx:checked ~ label:after {
  605. left: 20px;
  606. background: rgb(22, 73, 117);
  607. }
  608. .hidden {
  609. display: none;
  610. }
  611. }
  612. }
  613. .textureLine {
  614. display: grid;
  615. grid-template-rows: 30px auto;
  616. .control {
  617. margin-top: 2px;
  618. grid-row: 1;
  619. display: grid;
  620. grid-template-columns: 1fr 40px 40px 40px 40px 40px 1fr;
  621. .red {
  622. grid-column: 2;
  623. }
  624. .green {
  625. grid-column: 3;
  626. }
  627. .blue {
  628. grid-column: 4;
  629. }
  630. .alpha {
  631. grid-column: 5;
  632. }
  633. .all {
  634. grid-column: 6;
  635. }
  636. }
  637. .control3D {
  638. margin-top: 2px;
  639. grid-row: 1;
  640. display: grid;
  641. grid-template-columns: 1fr 40px 40px 40px 40px 40px 40px 1fr;
  642. .px {
  643. grid-column: 2;
  644. }
  645. .nx {
  646. grid-column: 3;
  647. }
  648. .py {
  649. grid-column: 4;
  650. }
  651. .ny {
  652. grid-column: 5;
  653. }
  654. .pz {
  655. grid-column: 6;
  656. }
  657. .nz {
  658. grid-column: 7;
  659. }
  660. }
  661. .command {
  662. border: 1px solid transparent;
  663. background:transparent;
  664. color: white;
  665. }
  666. .selected {
  667. border: 1px solid rgb(51, 122, 183);
  668. }
  669. .preview {
  670. grid-row: 2;
  671. display: grid;
  672. align-self: center;
  673. justify-self: center;
  674. height: 256px;
  675. width: 256px;
  676. margin-top: 5px;
  677. margin-bottom: 5px;
  678. border: 0;
  679. background-size: 32px 32px;
  680. background-color: white;
  681. background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 2 2'%3E%3Cpath fill='rgba(1.0,1.0,1.0,0.3)' fill-rule='evenodd' d='M0 0h1v1H0V0zm1 1h1v1H1V1z'/%3E%3C/svg%3E");
  682. }
  683. }
  684. .gltf-extension-property {
  685. margin-left: 30px;
  686. border-left: 1px solid rgb(51, 122, 183);
  687. }
  688. .floatLine {
  689. padding-left: $line-padding-left;
  690. height: 30px;
  691. display: grid;
  692. grid-template-columns: 1fr 120px;
  693. .label {
  694. grid-column: 1;
  695. display: flex;
  696. align-items: center;
  697. }
  698. .value {
  699. grid-column: 2;
  700. display: flex;
  701. align-items: center;
  702. input {
  703. width: 110px;
  704. }
  705. }
  706. }
  707. .sliderLine {
  708. padding-left: 2px;
  709. height: 30px;
  710. display: grid;
  711. grid-template-columns: 1fr auto;
  712. .label {
  713. grid-column: 1;
  714. display: flex;
  715. align-items: center;
  716. }
  717. .slider {
  718. grid-column: 2;
  719. margin-right: 5px;
  720. display: flex;
  721. align-items: center;
  722. .range {
  723. -webkit-appearance: none;
  724. width: 120px;
  725. height: 6px;
  726. background: #d3d3d3;
  727. border-radius: 5px;
  728. outline: none;
  729. opacity: 0.7;
  730. -webkit-transition: .2s;
  731. transition: opacity .2s;
  732. }
  733. .range:hover {
  734. opacity: 1;
  735. }
  736. .range::-webkit-slider-thumb {
  737. -webkit-appearance: none;
  738. appearance: none;
  739. width: 14px;
  740. height: 14px;
  741. border-radius: 50%;
  742. background: rgb(51, 122, 183);
  743. cursor: pointer;
  744. }
  745. .range::-moz-range-thumb {
  746. width: 14px;
  747. height: 14px;
  748. border-radius: 50%;
  749. background: rgb(51, 122, 183);
  750. cursor: pointer;
  751. }
  752. }
  753. }
  754. .color3Line {
  755. padding-left: $line-padding-left;
  756. display: grid;
  757. .firstLine {
  758. height: 30px;
  759. display: grid;
  760. grid-template-columns: 1fr auto 20px 20px;
  761. .label {
  762. grid-column: 1;
  763. display: flex;
  764. align-items: center;
  765. }
  766. .color3 {
  767. grid-column: 2;
  768. width: 50px;
  769. display: flex;
  770. align-items: center;
  771. input[type="color"] {
  772. -webkit-appearance: none;
  773. border: 1px solid rgba(255, 255, 255, 0.5);
  774. padding: 0;
  775. width: 30px;
  776. height: 20px;
  777. }
  778. input[type="color"]::-webkit-color-swatch-wrapper {
  779. padding: 0;
  780. }
  781. input[type="color"]::-webkit-color-swatch {
  782. border: none;
  783. }
  784. input {
  785. margin-right: 5px;
  786. }
  787. }
  788. .copy {
  789. grid-column: 3;
  790. display: grid;
  791. align-items: center;
  792. justify-items: center;
  793. cursor: pointer;
  794. img {
  795. height: 100%;
  796. }
  797. }
  798. .expand {
  799. grid-column: 4;
  800. display: grid;
  801. align-items: center;
  802. justify-items: center;
  803. cursor: pointer;
  804. }
  805. }
  806. .secondLine {
  807. display: grid;
  808. padding-right: 5px;
  809. border-left: 1px solid rgb(51, 122, 183);
  810. .numeric {
  811. display: grid;
  812. grid-template-columns: 1fr auto;
  813. }
  814. .numeric-label {
  815. text-align: right;
  816. grid-column: 1;
  817. display: flex;
  818. align-items: center;
  819. justify-self: right;
  820. margin-right: 10px;
  821. }
  822. .numeric-value {
  823. width: 120px;
  824. grid-column: 2;
  825. display: flex;
  826. align-items: center;
  827. border: 1px solid rgb(51, 122, 183);
  828. }
  829. }
  830. }
  831. .listLine {
  832. padding-left: $line-padding-left;
  833. height: 30px;
  834. display: grid;
  835. grid-template-columns: 1fr auto;
  836. .label {
  837. grid-column: 1;
  838. display: flex;
  839. align-items: center;
  840. }
  841. .options {
  842. grid-column: 2;
  843. display: flex;
  844. align-items: center;
  845. margin-right: 5px;
  846. select {
  847. width: 115px;
  848. }
  849. }
  850. }
  851. .paneContainer {
  852. margin-top: 3px;
  853. display:grid;
  854. grid-template-rows: 100%;
  855. grid-template-columns: 100%;
  856. .paneList {
  857. border-left: 3px solid transparent;
  858. }
  859. &:hover {
  860. .paneList {
  861. border-left: 3px solid rgba(51, 122, 183, 0.8);
  862. }
  863. .paneContainer-content {
  864. .header {
  865. .title {
  866. border-left: 3px solid rgb(51, 122, 183);
  867. }
  868. }
  869. }
  870. }
  871. .paneContainer-highlight-border {
  872. grid-row: 1;
  873. grid-column: 1;
  874. opacity: 1;
  875. border: 3px solid red;
  876. margin-bottom: -5px;
  877. z-index: 100;
  878. transition: opacity 250ms;
  879. pointer-events: none;
  880. &.transparent {
  881. opacity: 0;
  882. }
  883. }
  884. .paneContainer-content {
  885. grid-row: 1;
  886. grid-column: 1;
  887. .header {
  888. display: grid;
  889. grid-template-columns: 1fr auto;
  890. background: #555555;
  891. height: 30px;
  892. padding-right: 5px;
  893. cursor: pointer;
  894. .title {
  895. border-left: 3px solid transparent;
  896. padding-left: 5px;
  897. grid-column: 1;
  898. display: flex;
  899. align-items: center;
  900. }
  901. .collapse {
  902. grid-column: 2;
  903. display: flex;
  904. align-items: center;
  905. justify-items: center;
  906. transform-origin: center;
  907. &.closed {
  908. transform: rotate(180deg);
  909. }
  910. }
  911. }
  912. .paneList > div:not(:last-child) {
  913. border-bottom: 0.5px solid rgba(255, 255, 255, 0.1);
  914. }
  915. .fragment > div:not(:last-child) {
  916. border-bottom: 0.5px solid rgba(255, 255, 255, 0.1);
  917. }
  918. }
  919. }
  920. }
  921. }
  922. }
  923. }