1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096 |
- $line-padding-left: 2px;
- #inspector-host {
- position: absolute;
- right: 0px;
- top:0px;
- bottom: 0px;
- }
- #__resizable_base__ {
- display: none;
- }
- #actionTabs {
- background: #333333;
- height: 100%;
- margin: 0;
- padding: 0;
- display: grid;
- grid-template-rows: auto 1fr;
- font: 14px "Arial";
- overflow: hidden;
- .hoverIcon:hover {
- opacity: 0.8;
- }
- #header {
- height: 30px;
- font-size: 16px;
- color: white;
- background: #222222;
- grid-row: 1;
- text-align: center;
- display: grid;
- grid-template-columns: 30px 1fr 50px;
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- #logo {
- grid-column: 1;
- width: 24px;
- height: 24px;
- display: flex;
- align-self: center;
- justify-self: center;
- }
- #back {
- grid-column: 1;
- display: grid;
- align-self: center;
- justify-self: center;
- cursor: pointer;
- }
- #title {
- grid-column: 2;
- display: grid;
- align-items: center;
- text-align: center;
- }
- #commands {
- grid-column: 3;
- display: grid;
- align-items: center;
- grid-template-columns: 1fr 1fr;
-
- .expand {
- grid-column: 1;
- display: grid;
- align-items: center;
- justify-items: center;
- cursor: pointer;
- }
- .close {
- grid-column: 2;
- display: grid;
- align-items: center;
- justify-items: center;
- cursor: pointer;
- }
- }
- }
- .tabs {
- display: grid;
- grid-row: 2;
- grid-template-rows: 40px 1fr;
- font: 14px "Arial";
- overflow: hidden;
- .labels {
- grid-row: 1;
- display: flex;
- align-items: center;
- justify-items: center;
- border-bottom: 1px solid #ffffff;
- margin: 0;
- padding: 0;
- .label {
- font-size: 24px;
- color: white;
- width: 40px;
- display: flex;
- align-content: center;
- justify-content: center;
- border: 1px solid transparent;
- border-bottom: none;
- background: #333333;
- padding: 5px;
- height: 28px;
- cursor: pointer;
- &.active {
- border-color: #ffffff;
- border-bottom: 2px solid transparent;
- margin-bottom: -2px;
- }
- }
- }
- .panes {
- grid-row: 2;
- display: grid;
- grid-template-rows: 100%;
- overflow: hidden;
- .infoMessage {
- opacity: 0.5;
- color: white;
- margin: 15px 5px 0px 5px;
-
- }
- .pane {
- color: white;
- overflow-x: hidden;
- overflow-y: auto;
- height: 100%;
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- .animation-info {
- border-left: greenyellow 3px solid;
- margin-left: 5px;
- padding-left: 5px !important;
- }
- .underline {
- border-bottom: 0.5px solid rgba(255, 255, 255, 0.5);
- }
-
- .textureLinkLine {
- display: grid;
- grid-template-columns: auto 1fr;
- .debug {
- grid-column: 1;
- margin-left: 5px;
- margin-right: 5px;
- display: block;
- align-items: center;
- justify-items: center;
- cursor: pointer;
- opacity: 0.5;
- &.selected {
- opacity: 1.0;
- }
- }
- .textLine {
- grid-column: 2;
- }
- .actionIcon {
- display : inline-block;
- margin-top : 6px;
- margin-right : 4px;
- }
- }
- .messageLine {
- text-align: center;
- font-size: 12px;
- font-style: italic;
- opacity: 0.6;
- }
- .iconMessageLine {
- padding-left: $line-padding-left;
- height: 30px;
- display: grid;
- grid-template-columns: 30px 1fr;
- .icon {
- grid-column: 1;
- display: grid;
- align-items: center;
- justify-items: center;
- }
- .value {
- grid-column: 2;
- display: flex;
- align-items: center;
- }
- }
- .color-picker {
- height: calc(100% - 8px);
- margin: 4px;
- width: 100%;
- .color-rect {
- height: calc(100% - 4px);
- border: 2px white solid;
- cursor: pointer;
- min-height: 18px;
- }
- .color-picker-cover {
- position: fixed;
- top: 0px;
- right: 0px;
- bottom: 0px;
- left: 0px;
- z-index: 100;
- }
- .color-picker-float {
- position: absolute;
- }
- }
- .linkButtonLine {
- padding-left: $line-padding-left;
- height: 30px;
- display: grid;
- grid-template-columns: 1fr auto 20px;
- .link {
- grid-column: 1;
- display: flex;
- align-items: center;
- text-decoration: underline;
- cursor: pointer;
- }
- .link-button {
- grid-column: 2;
- button {
- background: #222222;
- border: 1px solid rgb(51, 122, 183);
- margin: 5px 10px 5px 10px;
- color:white;
- padding: 4px 5px;
- opacity: 0.9;
- cursor: pointer;
- }
-
- button:hover {
- opacity: 1.0;
- }
-
- button:active {
- background: #282828;
- }
-
- button:focus {
- border: 1px solid rgb(51, 122, 183);
- outline: 0px;
- }
- }
- .link-icon{
- grid-column: 3;
- display: grid;
- align-content: center;
- }
- }
- .textLine {
- padding-left: $line-padding-left;
- height: 30px;
- display: grid;
- grid-template-columns: 1fr auto;
- &.indented {
- grid-template-columns: 100%;
- .link-value {
- grid-column: 1;
- text-align: start;
- margin-left: 20px;
- opacity: 0.6;
- max-width: unset;
- }
- .value {
- grid-column: 1;
- text-align: start;
- margin-left: 20px;
- opacity: 0.6;
- max-width: unset;
- }
- }
-
- &.reduced-opacity {
- opacity: 0.6;
- padding-left: 25px;
- }
- .label {
- grid-column: 1;
- display: flex;
- align-items: center;
- }
- .link-value {
- grid-column: 2;
- white-space: nowrap;
- text-overflow: ellipsis;
- overflow: hidden;
- text-align: end;
- opacity: 0.8;
- margin:5px;
- margin-top: 7px;
- max-width: 140px;
- text-decoration: underline;
- cursor: pointer;
- }
- .value {
- grid-column: 2;
- white-space: nowrap;
- text-overflow: ellipsis;
- overflow: hidden;
- text-align: end;
- opacity: 0.8;
- margin:5px;
- margin-top: 7px;
- max-width: 200px;
- -webkit-user-select: text;
- -moz-user-select: text;
- -ms-user-select: text;
- user-select: text;
- &.check {
- color: green;
- }
- &.uncheck {
- color: red;
- }
- }
- }
- .gradient-container {
- margin-top: 3px;
- .gradient-label {
- height: 30px;
- display: grid;
- align-content: center;
- }
- .gradient-step {
- display: grid;
- grid-template-rows: 100%;
- grid-template-columns: 25px 50px 55px 40px auto 20px 5px;
- padding-top: 5px;
- padding-left: 5px;
- padding-bottom: 5px;
- align-items: center;
- border-left: orange 3px solid;
-
- .step {
- grid-row: 1;
- grid-column: 1;
- }
- .color1 {
- height: 100%;
- }
- .color2{
- height: 100%;
- padding-left: 5px;
- }
-
- .factor1 {
- grid-row: 1;
- grid-column: 2;
- cursor: pointer;
- }
- .factor2 {
- padding-left: 5px;
- grid-row: 1;
- grid-column: 3;
- cursor: pointer;
- .grayed {
- background: gray;
- border-color: gray;
- }
- }
- .numeric-input {
- width: calc(100% - 5px);
- }
-
- .step-value {
- margin-left: 5px;
- grid-row: 1;
- grid-column: 4;
- text-align: right;
- margin-right: 5px;
- }
-
- .step-slider {
- grid-row: 1;
- grid-column: 5;
- display: grid;
- justify-content: stretch;
- align-content: center;
- margin-right: 5px;
-
- input {
- width: 100%;
- }
- }
-
- .gradient-delete {
- grid-row: 1;
- grid-column: 6;
- display: grid;
- align-content: center;
- justify-content: center;
- }
- }
- }
- .textInputLine {
- padding-left: $line-padding-left;
- height: 30px;
- display: grid;
- grid-template-columns: 1fr 120px;
- .label {
- grid-column: 1;
- display: flex;
- align-items: center;
- }
- .value {
- display: flex;
- align-items: center;
- grid-column: 2;
-
- input {
- width: 110px;
- }
- }
- }
- .buttonLine {
- height: 30px;
- display: grid;
- align-items: center;
- justify-items: stretch;
- input[type="file"] {
- display: none;
- }
- .file-upload {
- background: #222222;
- border: 1px solid rgb(51, 122, 183);
- margin: 5px 10px 5px 10px;
- color:white;
- padding: 4px 5px;
- font-size: 13px;
- opacity: 0.9;
- cursor: pointer;
- text-align: center;
- }
- .file-upload:hover {
- opacity: 1.0;
- }
- .file-upload:active {
- transform: scale(0.98);
- transform-origin: 0.5 0.5;
- }
- button {
- background: #222222;
- border: 1px solid rgb(51, 122, 183);
- margin: 5px 10px 5px 10px;
- color:white;
- padding: 4px 5px;
- opacity: 0.9;
- cursor: pointer;
- }
- button:hover {
- opacity: 1.0;
- }
- button:active {
- background: #282828;
- }
-
- button:focus {
- border: 1px solid rgb(51, 122, 183);
- outline: 0px;
- }
- }
- .radioLine {
- padding-left: $line-padding-left;
- height: 30px;
- display: grid;
- grid-template-columns: 1fr 24px;
- .label {
- grid-column: 1;
- display: flex;
- align-items: center;
- }
- .radioContainer {
- display: flex;
- align-items: center;
- .radio {
- grid-column: 2;
- display: none;
- &:checked + label:before {
- border-color: rgb(51, 122, 183);
- }
- &:checked + label:after {
- transform: scale(1);
- }
- }
- .labelForRadio {
- display: inline-block;
- height: 14px;
- position: relative;
- padding: 0 24px;
- margin-bottom: 0;
- cursor: pointer;
- vertical-align: bottom;
- &:before, &:after {
- position: absolute;
- content: '';
- border-radius: 50%;
- transition: all .3s ease;
- transition-property: transform, border-color;
- }
- &:before {
- left: 0px;
- top: 0;
- width: 16px;
- height: 16px;
- border: 2px solid white;
- }
- &:after {
- top: 6px;
- left: 6px;
- width: 8px;
- height: 8px;
- transform: scale(0);
- background:rgb(51, 122, 183);
- }
- }
- }
- }
- .vector3Line {
- padding-left:$line-padding-left;
- display: grid;
- .firstLine {
- display: grid;
- grid-template-columns: 1fr auto 20px;
- height: 30px;
- .label {
- grid-column: 1;
- display: flex;
- align-items: center;
- }
- .vector {
- grid-column: 2;
- display: flex;
- align-items: center;
- text-align: right;
- opacity: 0.8;
- }
- .expand {
- grid-column: 3;
- display: grid;
- align-items: center;
- justify-items: center;
- cursor: pointer;
- }
- }
- .secondLine {
- display: grid;
- padding-right: 5px;
- border-left: 1px solid rgb(51, 122, 183);
- .numeric {
- display: grid;
- grid-template-columns: 1fr auto;
- }
- .numeric-label {
- text-align: right;
- grid-column: 1;
- display: flex;
- align-items: center;
- justify-self: right;
- margin-right: 10px;
- }
- .numeric-value {
- width: 120px;
- grid-column: 2;
- display: flex;
- align-items: center;
- border: 1px solid rgb(51, 122, 183);
- }
- }
- }
- .checkBoxLine {
- padding-left: $line-padding-left;
- height: 30px;
- display: grid;
- grid-template-columns: 1fr auto;
- .label {
- grid-column: 1;
- display: flex;
- align-items: center;
- }
- .checkBox {
- grid-column: 2;
-
- display: flex;
- align-items: center;
- .lbl {
- position: relative;
- display: block;
- height: 14px;
- width: 34px;
- margin-right: 5px;
- background: #898989;
- border-radius: 100px;
- cursor: pointer;
- transition: all 0.3s ease;
- }
- .lbl:after {
- position: absolute;
- left: 3px;
- top: 2px;
- display: block;
- width: 10px;
- height: 10px;
- border-radius: 100px;
- background: #fff;
- box-shadow: 0px 3px 3px rgba(0,0,0,0.05);
- content: '';
- transition: all 0.15s ease;
- }
- .lbl:active:after {
- transform: scale(1.15, 0.85);
- }
- .cbx:checked ~ label {
- background: rgb(51, 122, 183);
- }
- .cbx:checked ~ label:after {
- left: 20px;
- background: rgb(22, 73, 117);
- }
- .hidden {
- display: none;
- }
- }
- }
- .textureLine {
- display: grid;
- grid-template-rows: 30px auto;
- .control {
- margin-top: 2px;
- grid-row: 1;
- display: grid;
- grid-template-columns: 1fr 40px 40px 40px 40px 40px 1fr;
- .red {
- grid-column: 2;
- }
- .green {
- grid-column: 3;
- }
- .blue {
- grid-column: 4;
- }
- .alpha {
- grid-column: 5;
- }
- .all {
- grid-column: 6;
- }
- }
- .control3D {
- margin-top: 2px;
- grid-row: 1;
- display: grid;
- grid-template-columns: 1fr 40px 40px 40px 40px 40px 40px 1fr;
- .px {
- grid-column: 2;
- }
- .nx {
- grid-column: 3;
- }
- .py {
- grid-column: 4;
- }
- .ny {
- grid-column: 5;
- }
- .pz {
- grid-column: 6;
- }
- .nz {
- grid-column: 7;
- }
- }
- .command {
- border: 1px solid transparent;
- background:transparent;
- color: white;
- }
- .selected {
- border: 1px solid rgb(51, 122, 183);
- }
- .preview {
- grid-row: 2;
- display: grid;
- align-self: center;
- justify-self: center;
- height: 256px;
- width: 256px;
- margin-top: 5px;
- margin-bottom: 5px;
- border: 0;
- background-size: 32px 32px;
- background-color: white;
- 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");
- }
- }
- .gltf-extension-property {
- margin-left: 30px;
- border-left: 1px solid rgb(51, 122, 183);
- }
- .floatLine {
- padding-left: $line-padding-left;
- height: 30px;
- display: grid;
- grid-template-columns: 1fr 120px;
- .label {
- grid-column: 1;
- display: flex;
- align-items: center;
- }
- .value {
- grid-column: 2;
-
- display: flex;
- align-items: center;
-
- input {
- width: 110px;
- }
- }
- }
- .sliderLine {
- padding-left: 2px;
- height: 30px;
- display: grid;
- grid-template-columns: 1fr auto;
- .label {
- grid-column: 1;
- display: flex;
- align-items: center;
- }
- .slider {
- grid-column: 2;
- margin-right: 5px;
-
- display: flex;
- align-items: center;
- .range {
- -webkit-appearance: none;
- width: 120px;
- height: 6px;
- background: #d3d3d3;
- border-radius: 5px;
- outline: none;
- opacity: 0.7;
- -webkit-transition: .2s;
- transition: opacity .2s;
- }
-
- .range:hover {
- opacity: 1;
- }
-
- .range::-webkit-slider-thumb {
- -webkit-appearance: none;
- appearance: none;
- width: 14px;
- height: 14px;
- border-radius: 50%;
- background: rgb(51, 122, 183);
- cursor: pointer;
- }
-
- .range::-moz-range-thumb {
- width: 14px;
- height: 14px;
- border-radius: 50%;
- background: rgb(51, 122, 183);
- cursor: pointer;
- }
- }
- }
-
- .color3Line {
- padding-left: $line-padding-left;
- display: grid;
- .firstLine {
- height: 30px;
- display: grid;
- grid-template-columns: 1fr auto 20px 20px;
- .label {
- grid-column: 1;
- display: flex;
- align-items: center;
- }
- .color3 {
- grid-column: 2;
- width: 50px;
-
- display: flex;
- align-items: center;
- input[type="color"] {
- -webkit-appearance: none;
- border: 1px solid rgba(255, 255, 255, 0.5);
- padding: 0;
- width: 30px;
- height: 20px;
- }
- input[type="color"]::-webkit-color-swatch-wrapper {
- padding: 0;
- }
- input[type="color"]::-webkit-color-swatch {
- border: none;
- }
-
- input {
- margin-right: 5px;
- }
- }
- .copy {
- grid-column: 3;
- display: grid;
- align-items: center;
- justify-items: center;
- cursor: pointer;
- img {
- height: 100%;
- }
- }
- .expand {
- grid-column: 4;
- display: grid;
- align-items: center;
- justify-items: center;
- cursor: pointer;
- }
- }
- .secondLine {
- display: grid;
- padding-right: 5px;
- border-left: 1px solid rgb(51, 122, 183);
- .numeric {
- display: grid;
- grid-template-columns: 1fr auto;
- }
- .numeric-label {
- text-align: right;
- grid-column: 1;
- display: flex;
- align-items: center;
- justify-self: right;
- margin-right: 10px;
- }
- .numeric-value {
- width: 120px;
- grid-column: 2;
- display: flex;
- align-items: center;
- border: 1px solid rgb(51, 122, 183);
- }
- }
- }
-
- .listLine {
- padding-left: $line-padding-left;
- height: 30px;
- display: grid;
- grid-template-columns: 1fr auto;
- .label {
- grid-column: 1;
- display: flex;
- align-items: center;
- }
- .options {
- grid-column: 2;
-
- display: flex;
- align-items: center;
- margin-right: 5px;
- select {
- width: 115px;
- }
- }
- }
- .paneContainer {
- margin-top: 3px;
- display:grid;
- grid-template-rows: 100%;
- grid-template-columns: 100%;
-
- .paneList {
- border-left: 3px solid transparent;
- }
- &:hover {
- .paneList {
- border-left: 3px solid rgba(51, 122, 183, 0.8);
- }
- .paneContainer-content {
- .header {
- .title {
- border-left: 3px solid rgb(51, 122, 183);
- }
- }
- }
- }
-
- .paneContainer-highlight-border {
- grid-row: 1;
- grid-column: 1;
- opacity: 1;
- border: 3px solid red;
- margin-bottom: -5px;
- z-index: 100;
- transition: opacity 250ms;
- pointer-events: none;
-
- &.transparent {
- opacity: 0;
- }
- }
- .paneContainer-content {
- grid-row: 1;
- grid-column: 1;
- .header {
- display: grid;
- grid-template-columns: 1fr auto;
- background: #555555;
- height: 30px;
- padding-right: 5px;
- cursor: pointer;
-
- .title {
- border-left: 3px solid transparent;
- padding-left: 5px;
- grid-column: 1;
- display: flex;
- align-items: center;
- }
- .collapse {
- grid-column: 2;
- display: flex;
- align-items: center;
- justify-items: center;
- transform-origin: center;
- &.closed {
- transform: rotate(180deg);
- }
- }
- }
- .paneList > div:not(:last-child) {
- border-bottom: 0.5px solid rgba(255, 255, 255, 0.1);
- }
- .fragment > div:not(:last-child) {
- border-bottom: 0.5px solid rgba(255, 255, 255, 0.1);
- }
- }
- }
- }
- }
- }
- }
|