msDestiny14 4 سال پیش
والد
کامیت
33d8b3b1f4

guiEditor/src/components/nodeList/guiList.scss → guiEditor/src/components/guiList/guiList.scss


guiEditor/src/components/nodeList/guiListComponent.tsx → guiEditor/src/components/guiList/guiListComponent.tsx


+ 0 - 43
guiEditor/src/main.scss

@@ -26,11 +26,6 @@
     }
 }
 
-#nodeList {
-    grid-row: 1 / span 2;
-    grid-column: 1;
-}
-
 #leftGrab {
     grid-row: 1 / span 2;
     grid-column: 2;
@@ -256,44 +251,6 @@
             }
         }
     }
-    
-    #preview {
-        border-top: 1px solid rgb(85, 85, 85);
-        grid-row: 3;
-        grid-column: 1;
-        width: 100%;
-        display: grid;
-        outline: 0 !important;
-        user-select: none;
-
-        #preview-canvas {
-            width: 100%;
-            height: 100%;
-            outline: 0 !important;
-            grid-row: 1;
-            grid-column: 1;            
-        }
-
-        .waitPanel {
-            width: 100%;
-            height: 100%;
-            grid-row: 1;
-            grid-column: 1;  
-            color: white;
-            font-size: 18px;
-            align-content: center;
-            justify-content: center;
-            background: rgba(20, 20, 20, 0.95);    
-            z-index: 10;      
-            display: grid;
-            transition: opacity 250ms;
-
-            &.hidden {
-                opacity: 0;
-                pointer-events: none;
-            }
-        }
-    }
 }
 
 .blocker {

+ 1 - 1
guiEditor/src/workbenchEditor.tsx

@@ -1,6 +1,6 @@
 import * as React from "react";
 import { GlobalState } from "./globalState";
-import { GuiListComponent } from "./components/nodeList/guiListComponent";
+import { GuiListComponent } from "./components/guiList/guiListComponent";
 import { PropertyTabComponent } from "./components/propertyTab/propertyTabComponent";
 import { Portal } from "./portal";
 import { LogComponent } from "./components/log/logComponent";