curveEditor.scss 29 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231
  1. body {
  2. background-color: rgb(51, 51, 51);
  3. }
  4. #animation-curve-editor {
  5. font-family: acumin-pro-condensed;
  6. .last {
  7. margin-left: 3px;
  8. }
  9. .icon {
  10. width: 40px;
  11. height: 40px;
  12. &.medium {
  13. width: 30px;
  14. height: 30px;
  15. }
  16. &.small {
  17. width: 20px;
  18. height: 20px;
  19. }
  20. &.babylon-logo {
  21. background-image: url('./assets/babylonLogo.svg');
  22. background-repeat: no-repeat;
  23. background-color: transparent;
  24. background-size: contain;
  25. }
  26. &.close {
  27. background-image: url('./assets/closeWindowIcon.svg');
  28. background-repeat: no-repeat;
  29. background-color: transparent;
  30. background-size: contain;
  31. color: white;
  32. cursor: pointer;
  33. }
  34. &.auto-tangent {
  35. background-image: url('./assets/autoTangentIcon.svg');
  36. background-repeat: no-repeat;
  37. background-color: transparent;
  38. background-size: contain;
  39. color: white;
  40. cursor: pointer;
  41. &:hover {
  42. background-color: #888888;
  43. }
  44. &:active {
  45. background-color: #555555;
  46. }
  47. }
  48. &.break-tangent {
  49. background-image: url('./assets/breakTangentIcon.svg');
  50. background-repeat: no-repeat;
  51. background-color: transparent;
  52. background-size: contain;
  53. color: white;
  54. cursor: pointer;
  55. &:hover {
  56. background-color: #888888;
  57. }
  58. &:active {
  59. background-color: #555555;
  60. }
  61. }
  62. &.flat-tangent {
  63. background-image: url('./assets/flatTangentIcon.svg');
  64. background-repeat: no-repeat;
  65. background-color: transparent;
  66. background-size: contain;
  67. color: white;
  68. cursor: pointer;
  69. &:hover {
  70. background-color: #888888;
  71. }
  72. &:active {
  73. background-color: #555555;
  74. }
  75. }
  76. &.frame {
  77. background-image: url('./assets/frameIcon.svg');
  78. background-repeat: no-repeat;
  79. background-color: transparent;
  80. background-size: contain;
  81. color: white;
  82. cursor: pointer;
  83. &:hover {
  84. background-color: #888888;
  85. }
  86. &:active {
  87. background-color: #555555;
  88. }
  89. }
  90. &.linear-tangent {
  91. background-image: url('./assets/linearTangentIcon.svg');
  92. background-repeat: no-repeat;
  93. background-color: transparent;
  94. background-size: contain;
  95. color: white;
  96. cursor: pointer;
  97. &:hover {
  98. background-color: #888888;
  99. }
  100. &:active {
  101. background-color: #555555;
  102. }
  103. }
  104. &.unify-tangent {
  105. background-image: url('./assets/unifyTangentIcon.svg');
  106. background-repeat: no-repeat;
  107. background-color: transparent;
  108. background-size: contain;
  109. color: white;
  110. cursor: pointer;
  111. &:hover {
  112. background-color: #888888;
  113. }
  114. &:active {
  115. background-color: #555555;
  116. }
  117. }
  118. &.add-animation {
  119. background-image: url('./assets/addAnimationIcon.svg');
  120. background-repeat: no-repeat;
  121. background-color: transparent;
  122. background-size: contain;
  123. color: white;
  124. cursor: pointer;
  125. }
  126. &.animation-bullet {
  127. background-image: url('./assets/animationBulletIcon.svg');
  128. background-repeat: no-repeat;
  129. background-color: transparent;
  130. background-size: contain;
  131. color: white;
  132. }
  133. &.animation-delete {
  134. background-image: url('./assets/animationDeleteIcon.svg');
  135. background-repeat: no-repeat;
  136. background-color: transparent;
  137. background-size: contain;
  138. color: white;
  139. cursor: pointer;
  140. }
  141. &.animation-edit {
  142. background-image: url('./assets/editIcon.svg');
  143. background-repeat: no-repeat;
  144. background-color: transparent;
  145. background-size: contain;
  146. color: white;
  147. }
  148. &.animation-end {
  149. background-image: url('./assets/animationEndIcon.svg');
  150. background-repeat: no-repeat;
  151. background-color: transparent;
  152. background-size: contain;
  153. color: white;
  154. width: 20px;
  155. cursor: pointer;
  156. background-position: center;
  157. }
  158. &.animation-lastkey {
  159. background-image: url('./assets/animationLastKeyIcon.svg');
  160. background-repeat: no-repeat;
  161. background-color: transparent;
  162. background-size: contain;
  163. width: 20px;
  164. cursor: pointer;
  165. background-position: center;
  166. &:hover {
  167. background-image: url('./assets/animationLastKeyHoverIcon.svg');
  168. }
  169. }
  170. &.animation-nextkey {
  171. background-image: url('./assets/animationNextKeyIcon.svg');
  172. background-repeat: no-repeat;
  173. background-color: transparent;
  174. background-size: contain;
  175. width: 20px;
  176. cursor: pointer;
  177. background-position: center;
  178. &:hover {
  179. background-image: url('./assets/animationNextKeyHoverIcon.svg');
  180. }
  181. }
  182. &.animation-options {
  183. background-image: url('./assets/animationOptionsIcon.svg');
  184. background-repeat: no-repeat;
  185. background-color: transparent;
  186. background-size: contain;
  187. color: white;
  188. cursor: pointer;
  189. background-position: center;
  190. &:hover {
  191. background-color: #888888 !important;
  192. }
  193. }
  194. &.animation-playfwd {
  195. background-image: url('./assets/animationPlayFwdIcon.svg');
  196. background-repeat: no-repeat;
  197. background-color: transparent;
  198. background-size: contain;
  199. color: white;
  200. background-position: center;
  201. width: 20px;
  202. cursor: pointer;
  203. background-position: center;
  204. &:hover {
  205. background-image: url('./assets/animationPlayFwdHoverIcon.svg');
  206. }
  207. }
  208. &.animation-playrev {
  209. background-image: url('./assets/animationPlayRevIcon.svg');
  210. background-repeat: no-repeat;
  211. background-color: transparent;
  212. background-size: contain;
  213. color: white;
  214. background-position: center;
  215. width: 20px;
  216. cursor: pointer;
  217. background-position: center;
  218. &:hover {
  219. background-image: url('./assets/animationPlayRevHoverIcon.svg');
  220. }
  221. }
  222. &.animation-start {
  223. background-image: url('./assets/animationStartIcon.svg');
  224. background-repeat: no-repeat;
  225. background-color: transparent;
  226. background-size: contain;
  227. color: white;
  228. background-position: center;
  229. cursor: pointer;
  230. background-position: center;
  231. width: 20px;
  232. }
  233. &.animation-stop {
  234. background-image: url('./assets/animationStopIcon.svg');
  235. background-repeat: no-repeat;
  236. background-color: transparent;
  237. background-size: contain;
  238. color: white;
  239. background-position: center;
  240. cursor: pointer;
  241. background-position: center;
  242. width: 20px;
  243. margin-left: 10px;
  244. }
  245. &.animation-triangle {
  246. background-image: url('./assets/animationTriangleIcon.svg');
  247. background-repeat: no-repeat;
  248. background-color: transparent;
  249. background-size: contain;
  250. color: white;
  251. }
  252. &.key-active {
  253. background-image: url('./assets/keyActiveIcon.svg');
  254. background-repeat: no-repeat;
  255. background-color: transparent;
  256. background-size: contain;
  257. color: white;
  258. }
  259. &.key-inactive {
  260. background-image: url('./assets/keyInactiveIcon.svg');
  261. background-repeat: no-repeat;
  262. background-color: transparent;
  263. background-size: contain;
  264. color: white;
  265. }
  266. &.key-selected {
  267. background-image: url('./assets/keySelectedIcon.svg');
  268. background-repeat: no-repeat;
  269. background-color: transparent;
  270. background-size: contain;
  271. color: white;
  272. }
  273. &.loop-active {
  274. background-image: url('./assets/loopActiveIcon.svg');
  275. background-repeat: no-repeat;
  276. background-color: transparent;
  277. background-size: contain;
  278. color: white;
  279. cursor: pointer;
  280. }
  281. &.loop-inactive {
  282. background-image: url('./assets/loopInactiveIcon.svg');
  283. background-repeat: no-repeat;
  284. background-color: transparent;
  285. background-size: contain;
  286. color: white;
  287. cursor: pointer;
  288. }
  289. &.move {
  290. background-image: url('./assets/moveIcon.svg');
  291. background-repeat: no-repeat;
  292. background-color: transparent;
  293. background-size: contain;
  294. color: white;
  295. }
  296. &.save {
  297. background-image: url('./assets/saveIcon.svg');
  298. background-repeat: no-repeat;
  299. background-color: transparent;
  300. background-size: contain;
  301. color: white;
  302. cursor: pointer;
  303. }
  304. &.load {
  305. background-image: url('./assets/loadIcon.svg');
  306. background-repeat: no-repeat;
  307. background-color: transparent;
  308. background-size: contain;
  309. color: white;
  310. cursor: pointer;
  311. }
  312. &.checked {
  313. background-image: url('./assets/checkboxCheckedIcon.svg');
  314. background-repeat: no-repeat;
  315. background-color: transparent;
  316. background-size: contain;
  317. color: white;
  318. }
  319. &.unchecked {
  320. background-image: url('./assets/checkboxDefaultIcon.svg');
  321. background-repeat: no-repeat;
  322. background-color: transparent;
  323. background-size: contain;
  324. color: white;
  325. }
  326. &.new-key {
  327. background-image: url('./assets/newKeyIcon.svg');
  328. background-repeat: no-repeat;
  329. background-color: transparent;
  330. background-size: contain;
  331. color: white;
  332. &:hover {
  333. background-color: #888888;
  334. }
  335. &:active {
  336. background-color: #555555;
  337. }
  338. }
  339. &.scale {
  340. background-image: url('./assets/scaleIcon.svg');
  341. background-repeat: no-repeat;
  342. background-color: transparent;
  343. background-size: contain;
  344. color: white;
  345. }
  346. &.scrollbar-handle {
  347. background-image: url('./assets/scrollbarHandleIcon.svg');
  348. background-repeat: no-repeat;
  349. background-color: transparent;
  350. background-size: contain;
  351. color: white;
  352. }
  353. }
  354. .hidden {
  355. display: none;
  356. }
  357. .notification-area {
  358. position: absolute;
  359. width: auto;
  360. left: 0.53em;
  361. bottom: 60px;
  362. background-color: rgb(199, 50, 40);
  363. padding: 16px;
  364. border-radius: 5px;
  365. color: white;
  366. right: 2em;
  367. z-index: 1000;
  368. button {
  369. position: absolute;
  370. top: 3px;
  371. right: 10px;
  372. padding: 0;
  373. cursor: pointer;
  374. background: transparent;
  375. border: 0;
  376. -webkit-appearance: none;
  377. color: #000;
  378. text-shadow: 0 1px 0 #fff;
  379. opacity: 0.4;
  380. font-size: 1.8em;
  381. }
  382. }
  383. .header {
  384. display: flex;
  385. padding: 9px;
  386. background: #333333;
  387. color: white;
  388. height: 1.3em;
  389. justify-content: space-between;
  390. align-items: center;
  391. padding-left: 12px;
  392. padding-right: 12px;
  393. .title {
  394. text-transform: uppercase;
  395. }
  396. .close {
  397. grid-column: 2;
  398. display: grid;
  399. align-items: center;
  400. justify-items: center;
  401. cursor: pointer;
  402. }
  403. }
  404. .actions-wrapper {
  405. display: flex;
  406. flex-direction: row;
  407. justify-content: flex-start;
  408. align-items: center;
  409. background: #333333;
  410. height: 40px;
  411. .close {
  412. position: absolute;
  413. right: 1px;
  414. }
  415. .title-container {
  416. display: flex;
  417. justify-content: stretch;
  418. align-items: center;
  419. color: white;
  420. width: 220px;
  421. .title {
  422. font-size: 15pt;
  423. }
  424. }
  425. .buttons-container {
  426. display: flex;
  427. padding-left: 10px;
  428. }
  429. .action-input {
  430. display: flex;
  431. justify-content: center;
  432. flex-direction: row;
  433. align-items: center;
  434. margin-right: 8px;
  435. input {
  436. width: 75px;
  437. height: 24px;
  438. color: white;
  439. font-size: 12px;
  440. background: none;
  441. border: none;
  442. background-color: black;
  443. padding: 6px;
  444. &:focus {
  445. outline: solid 1px #ccc;
  446. }
  447. }
  448. }
  449. }
  450. .content {
  451. display: flex;
  452. align-items: flex-start;
  453. justify-content: flex-start;
  454. flex-direction: column;
  455. height: 462px;
  456. .row {
  457. width: 1024px;
  458. height: 427px;
  459. display: flex;
  460. flex-flow: row;
  461. background-color: #333333;
  462. }
  463. .row-bottom {
  464. display: flex;
  465. align-items: stretch;
  466. justify-content: flex-start;
  467. flex-direction: row;
  468. width: 1024px;
  469. height: 45px;
  470. background-color: #333333;
  471. .timeline {
  472. width: 100vw;
  473. background: #333333;
  474. display: flex;
  475. align-items: center;
  476. justify-content: stretch;
  477. height: 2.5rem;
  478. .display-line {
  479. width: 75vw;
  480. height: 40px;
  481. overflow: hidden;
  482. margin-right: 0px;
  483. padding-left: 10px;
  484. padding-right: 10px;
  485. &::-webkit-scrollbar {
  486. height: 0.4em;
  487. }
  488. &::-webkit-scrollbar-track {
  489. box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  490. }
  491. &::-webkit-scrollbar-thumb {
  492. background-color: cornflowerblue;
  493. outline: 1px solid slategrey;
  494. }
  495. }
  496. .input-frame {
  497. width: 60px;
  498. margin-left: 10px;
  499. margin-right: 10px;
  500. input {
  501. text-align: center;
  502. width: 60px;
  503. border: none;
  504. background: #222222;
  505. color: white;
  506. height: 25px;
  507. font-size: 15px;
  508. font-family: acumin-pro-condensed;
  509. &::-webkit-inner-spin-button,
  510. &::-webkit-outer-spin-button {
  511. appearance: none;
  512. -webkit-appearance: none;
  513. margin: 0;
  514. }
  515. }
  516. }
  517. .timeline-scroll-handle {
  518. display: flex;
  519. flex-direction: row;
  520. height: 25px;
  521. margin: 10px;
  522. .scroll-handle {
  523. width: 703px;
  524. background-color: #222222;
  525. height: 25px;
  526. display: flex;
  527. align-items: center;
  528. .handle {
  529. display: flex;
  530. flex-direction: row;
  531. height: 20px;
  532. background-color: #666666;
  533. justify-content: space-between;
  534. position: absolute;
  535. .scrollbar {
  536. cursor: pointer;
  537. width: 100%;
  538. }
  539. .left-grabber,
  540. .right-grabber {
  541. display: flex;
  542. align-items: center;
  543. cursor: pointer;
  544. }
  545. .left-grabber {
  546. padding-left: 3px;
  547. }
  548. .right-grabber {
  549. padding-right: 3px;
  550. }
  551. .grabber {
  552. background-color: #333333;
  553. width: 2px;
  554. height: 16px;
  555. margin-right: 2px;
  556. }
  557. .text {
  558. margin-left: 10px;
  559. margin-right: 10px;
  560. font-size: 12px;
  561. font-family: acumin-pro-condensed;
  562. color: #222222;
  563. }
  564. }
  565. }
  566. }
  567. .timeline-wrapper {
  568. margin-top: -40px;
  569. margin-left: -2px;
  570. }
  571. .controls {
  572. display: flex;
  573. justify-content: center;
  574. align-items: center;
  575. padding-left: 46px;
  576. padding-right: 46px;
  577. margin-left: 10px;
  578. .stop-container {
  579. width: 40px;
  580. display: flex;
  581. flex-direction: row;
  582. justify-content: space-between;
  583. align-items: center;
  584. }
  585. .input-frame input {
  586. width: 3em;
  587. }
  588. }
  589. }
  590. }
  591. .animation-list {
  592. margin: 10px;
  593. margin-top: 0;
  594. margin-bottom: 0;
  595. background: #111111;
  596. color: white;
  597. width: 210px;
  598. .controls-header {
  599. display: flex;
  600. background-color: #252525;
  601. .input-fps {
  602. display: flex;
  603. align-items: center;
  604. width: 52px;
  605. padding-left: 4px;
  606. .numeric {
  607. input {
  608. width: 52px;
  609. font-size: 12px;
  610. height: 22px;
  611. background-color: black;
  612. border: none;
  613. color: white;
  614. text-align: center;
  615. &::-webkit-inner-spin-button,
  616. &::-webkit-outer-spin-button {
  617. appearance: none;
  618. -webkit-appearance: none;
  619. margin: 0;
  620. }
  621. font-family: acumin-pro-condensed;
  622. }
  623. }
  624. p {
  625. color: white;
  626. font-size: 12px;
  627. margin: 0px;
  628. position: relative;
  629. right: 17px;
  630. line-height: 20px;
  631. height: 20px;
  632. margin-top: -2px;
  633. }
  634. }
  635. }
  636. .load-container {
  637. flex-direction: column;
  638. height: 377px;
  639. padding-top: 10px;
  640. .load-server {
  641. font-size: 12px;
  642. display: flex;
  643. background-color: #222222;
  644. padding-left: 10px;
  645. height: 20px;
  646. margin-top: 277px;
  647. p {
  648. margin: 0px;
  649. }
  650. }
  651. .load-browse {
  652. margin-top: 10px;
  653. display: flex;
  654. p {
  655. height: 20px;
  656. margin: 0px;
  657. font-size: 12px;
  658. width: 65px;
  659. text-align: right;
  660. margin-right: 10px;
  661. }
  662. .buttonLine {
  663. margin-left: 0px;
  664. margin-top: 0px;
  665. button {
  666. margin-top: 0px;
  667. font-family: acumin-pro-condensed;
  668. padding-top: 1px;
  669. }
  670. }
  671. }
  672. .buttonLine {
  673. width: 60px;
  674. padding: 0px;
  675. display: block;
  676. margin-left: 75px;
  677. height: 20px;
  678. margin-top: 10px;
  679. button {
  680. border: none;
  681. font-size: 12px;
  682. margin: 0px;
  683. width: 60px;
  684. background-color: #444;
  685. height: 20px;
  686. font-family: acumin-pro-condensed;
  687. padding-top: 1px;
  688. }
  689. }
  690. .textInputLine {
  691. display: flex;
  692. .label {
  693. font-size: 12px;
  694. width: 75px;
  695. text-align: center;
  696. font-family: acumin-pro-condensed;
  697. }
  698. .value {
  699. input {
  700. width: 127px;
  701. background-color: #444444;
  702. border: none;
  703. height: 20px;
  704. font-family: acumin-pro-condensed;
  705. padding-bottom: 6px;
  706. padding-left: 6px;
  707. }
  708. }
  709. }
  710. }
  711. .save-container {
  712. flex-direction: column;
  713. height: 377px;
  714. padding-top: 10px;
  715. .item-list {
  716. height: 317px;
  717. ul {
  718. list-style: none;
  719. padding-left: 10px;
  720. margin: 0px;
  721. label {
  722. font-size: 12px;
  723. font-family: acumin-pro-condensed;
  724. display: flex;
  725. align-content: center;
  726. align-items: center;
  727. input {
  728. margin: 0px;
  729. margin-right: 5px;
  730. }
  731. }
  732. }
  733. }
  734. .save-server {
  735. font-size: 12px;
  736. display: flex;
  737. background-color: #222222;
  738. padding-left: 10px;
  739. height: 20px;
  740. p {
  741. margin: 0px;
  742. }
  743. }
  744. .save-buttons {
  745. margin-top: 10px;
  746. display: flex;
  747. justify-content: space-evenly;
  748. margin-bottom: 10px;
  749. p {
  750. height: 20px;
  751. margin: 0px;
  752. font-size: 12px;
  753. width: 65px;
  754. text-align: right;
  755. margin-right: 10px;
  756. }
  757. .buttonLine {
  758. margin-left: 0px;
  759. margin-top: 0px;
  760. button {
  761. margin-top: 0px;
  762. font-family: acumin-pro-condensed;
  763. padding-top: 1px;
  764. }
  765. }
  766. }
  767. .buttonLine {
  768. width: 80px;
  769. padding: 0px;
  770. display: block;
  771. margin-left: 75px;
  772. height: 20px;
  773. margin-top: 10px;
  774. button {
  775. border: none;
  776. font-size: 12px;
  777. margin: 0px;
  778. width: 80px;
  779. background-color: #444444;
  780. height: 20px;
  781. font-family: acumin-pro-condensed;
  782. padding-top: 1px;
  783. }
  784. }
  785. .textInputLine {
  786. display: flex;
  787. .label {
  788. font-size: 12px;
  789. width: 75px;
  790. text-align: center;
  791. font-family: acumin-pro-condensed;
  792. }
  793. .value {
  794. input {
  795. width: 127px;
  796. background-color: #444444;
  797. border: none;
  798. height: 20px;
  799. font-family: acumin-pro-condensed;
  800. }
  801. }
  802. }
  803. }
  804. .new-animation {
  805. display: block;
  806. position: absolute;
  807. background-color: #111111;
  808. height: 377px;
  809. z-index: 10;
  810. .sub-header {
  811. display: flex;
  812. align-items: start;
  813. width: 250px;
  814. justify-content: space-between;
  815. .title {
  816. margin: 0px;
  817. font-size: 15pt;
  818. }
  819. }
  820. .sub-content {
  821. background-color: #111111;
  822. padding: 10px;
  823. display: inline-grid;
  824. grid-template-columns: 63px 127px;
  825. grid-template-rows: repeat(6, 30px);
  826. font-size: 12px;
  827. .confirm-buttons {
  828. grid-column-start: 2;
  829. .buttonLine {
  830. button {
  831. width: 60px;
  832. height: 20px;
  833. background-color: rgb(68, 68, 68);
  834. color: white;
  835. font-size: 12px;
  836. line-height: 11px;
  837. margin: 5px;
  838. font-size: 10px;
  839. font-family: acumin-pro-condensed;
  840. border: none;
  841. }
  842. }
  843. }
  844. }
  845. }
  846. .object-tree {
  847. background-color: #111111;
  848. ul {
  849. list-style: none;
  850. padding-left: 0px;
  851. padding: 0px;
  852. margin: 0px;
  853. li.property {
  854. &.sub {
  855. height: auto;
  856. }
  857. &:before {
  858. content: '';
  859. background: none;
  860. }
  861. height: 20px;
  862. display: flex;
  863. flex-wrap: wrap;
  864. font-size: 12px;
  865. p {
  866. display: inline;
  867. font-size: 12px;
  868. margin: 0px;
  869. flex: 8;
  870. cursor: pointer;
  871. }
  872. .spacer {
  873. width: 20px;
  874. height: 20px;
  875. }
  876. .animation-bullet {
  877. background-image: url('./assets/animationBulletIcon.svg');
  878. background-repeat: no-repeat;
  879. background-color: transparent;
  880. background-size: contain;
  881. color: #7a4ece;
  882. width: 10px;
  883. margin-left: 18px;
  884. margin-right: 2px;
  885. height: 20px;
  886. background-position-y: 5px;
  887. }
  888. .animation-arrow {
  889. width: 30px;
  890. background-image: url('./assets/animationTriangleIcon.svg');
  891. background-repeat: no-repeat;
  892. background-color: transparent;
  893. background-size: 10px;
  894. background-position-y: center;
  895. background-position-x: 18px;
  896. cursor: pointer;
  897. &.flip {
  898. transform: rotate(180deg);
  899. background-position: 2px 50%;
  900. }
  901. }
  902. &.active {
  903. background-color: #444444;
  904. }
  905. .handle-indicator {
  906. width: 30px;
  907. &.show {
  908. display: block;
  909. background-image: url('./assets/keySelectedIcon.svg');
  910. background-repeat: no-repeat;
  911. background-color: transparent;
  912. background-size: 10px;
  913. color: white;
  914. background-position-x: 9px;
  915. background-position-y: 5px;
  916. }
  917. &.hide {
  918. display: block;
  919. }
  920. }
  921. ul.sub-list {
  922. flex-grow: 1;
  923. flex-shrink: 1;
  924. flex-basis: 100%;
  925. .property {
  926. cursor: pointer;
  927. }
  928. }
  929. }
  930. }
  931. }
  932. .label-input {
  933. display: contents;
  934. label {
  935. text-align: right;
  936. }
  937. input {
  938. margin-left: 5px;
  939. height: 20px;
  940. background-color: #444444;
  941. border: none;
  942. color: white;
  943. padding-left: 3px;
  944. font-size: 10px;
  945. &:focus {
  946. border-radius: 0px;
  947. outline: 1px solid #ccc;
  948. }
  949. font-family: acumin-pro-condensed;
  950. }
  951. select {
  952. height: 20px;
  953. margin-left: 5px;
  954. font-size: 10px;
  955. background-color: #444444;
  956. border: none;
  957. color: white;
  958. &:focus {
  959. border-radius: 0px;
  960. outline: 1px solid #ccc;
  961. }
  962. font-family: acumin-pro-condensed;
  963. }
  964. }
  965. }
  966. .sample-chart {
  967. .linear {
  968. .draggable {
  969. cursor: move;
  970. }
  971. }
  972. }
  973. .graph-chart {
  974. overflow: hidden;
  975. scroll-behavior: smooth;
  976. background-color: rgb(17, 17, 17);
  977. height: 364px;
  978. width: 782px;
  979. .linear {
  980. overflow: visible;
  981. border: 0px solid white;
  982. height: 362px;
  983. width: 780px;
  984. outline: none;
  985. svg {
  986. overflow: visible;
  987. }
  988. &:focus {
  989. outline-color: transparent;
  990. }
  991. line {
  992. stroke: #555555;
  993. stroke-width: 0.2;
  994. }
  995. text {
  996. fill: #555555;
  997. font-family: 'acumin-pro-condensed';
  998. }
  999. .control-point {
  1000. display: none;
  1001. }
  1002. .control-point.active {
  1003. display: inline;
  1004. stroke: #e9db1e;
  1005. stroke-width: 0.2;
  1006. }
  1007. }
  1008. .playhead-container {
  1009. position: relative;
  1010. }
  1011. .playhead-wrapper {
  1012. left: -13px;
  1013. bottom: 366px;
  1014. position: relative;
  1015. }
  1016. .playhead-scrollable {
  1017. width: 100px;
  1018. height: 33px;
  1019. position: absolute;
  1020. top: 335px;
  1021. left: -39px;
  1022. }
  1023. .playhead-handle {
  1024. position: relative;
  1025. top: 340px;
  1026. width: 22px;
  1027. height: 30px;
  1028. .playhead {
  1029. width: 22px;
  1030. background-color: transparent;
  1031. color: #555555;
  1032. text-align: center;
  1033. font-size: 12px;
  1034. position: absolute;
  1035. top: 1px;
  1036. cursor: pointer;
  1037. }
  1038. .playhead-circle {
  1039. background-color: #ffffff;
  1040. width: 22px;
  1041. height: 22px;
  1042. border-radius: 50%;
  1043. position: absolute;
  1044. top: 0;
  1045. }
  1046. }
  1047. .playhead-line {
  1048. width: 1px;
  1049. height: 341px;
  1050. background-color: #ffffff;
  1051. position: absolute;
  1052. margin-left: 9.5px;
  1053. }
  1054. }
  1055. }
  1056. .buttonLine {
  1057. height: 30px;
  1058. display: grid;
  1059. align-items: center;
  1060. justify-items: stretch;
  1061. input[type='file'] {
  1062. display: none;
  1063. }
  1064. .file-upload {
  1065. background: #222222;
  1066. border: 1px solid rgb(51, 122, 183);
  1067. margin: 5px 10px 5px 10px;
  1068. color: white;
  1069. padding: 4px 5px;
  1070. opacity: 0.9;
  1071. cursor: pointer;
  1072. text-align: center;
  1073. }
  1074. .file-upload:hover {
  1075. opacity: 1;
  1076. }
  1077. .file-upload:active {
  1078. transform: scale(0.98);
  1079. transform-origin: 0.5 0.5;
  1080. }
  1081. button {
  1082. background: #222222;
  1083. border: 1px solid rgb(51, 122, 183);
  1084. margin: 5px 10px 5px 10px;
  1085. color: white;
  1086. padding: 4px 5px;
  1087. opacity: 0.9;
  1088. cursor: pointer;
  1089. }
  1090. button:hover {
  1091. opacity: 1;
  1092. }
  1093. button:active {
  1094. background: #282828;
  1095. }
  1096. button:focus {
  1097. border: 1px solid rgb(51, 122, 183);
  1098. outline: 0px;
  1099. }
  1100. }
  1101. }