actionTabs.scss 41 KB

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