Skip to content

Commit 1bcd881

Browse files
committed
Adjust loading logo
1 parent 910c79b commit 1bcd881

1 file changed

Lines changed: 24 additions & 161 deletions

File tree

style.css

Lines changed: 24 additions & 161 deletions
Original file line numberDiff line numberDiff line change
@@ -66,12 +66,25 @@ fill: black !important;
6666
max-height: 120px;
6767
animation: float 2s ease-in-out infinite;
6868
display: block;
69+
order: 1;
6970
}
7071

7172
.loading-logo {
7273
width: 200px;
7374
height: auto;
7475
margin: 10px 0;
76+
order: 2;
77+
opacity: 0;
78+
animation: fadeInLogo 0.5s ease-in 0.3s forwards;
79+
}
80+
81+
@keyframes fadeInLogo {
82+
from {
83+
opacity: 0;
84+
}
85+
to {
86+
opacity: 1;
87+
}
7588
}
7689

7790
.loading-spinner {
@@ -81,6 +94,7 @@ fill: black !important;
8194
border-top: 4px solid #511D91;
8295
border-radius: 50%;
8396
animation: spin 1s linear infinite;
97+
order: 3;
8498
}
8599

86100
.loading-text {
@@ -89,6 +103,7 @@ fill: black !important;
89103
font-weight: 500;
90104
margin: 0;
91105
font-family: "Asap", Helvetica, Arial, Lucida, sans-serif;
106+
order: 4;
92107
}
93108

94109
@keyframes float {
@@ -687,166 +702,6 @@ path.blocklyPath.blockly-ws-search-highlight.blockly-ws-search-current {
687702
outline-offset: -2px;
688703
}
689704

690-
/* Hide the 'Statistics' and 'Settings' tabs inside the #bottomPart container */
691-
#actionTabs .tabsMenu .label[title="Statistics"],
692-
#actionTabs .tabsMenu .label[title="Settings"] {
693-
display: none !important;
694-
}
695-
696-
#actionTabs .tabsMenu:has(.labels .label[title="Debug"].active) .panes .pane .paneContainer:nth-of-type(2),
697-
#actionTabs .tabsMenu:has(.labels .label[title="Debug"].active) .panes .pane .paneContainer:nth-of-type(3) {
698-
display: none !important;
699-
}
700-
701-
#actionTabs .tabsMenu:has(.labels .label[title="Tools"].active)
702-
.panes .pane .paneContainer:nth-child(n):not(:nth-of-type(1)):not(:nth-of-type(3)) {
703-
display: none !important;
704-
}
705-
706-
#actionTabs .tabsMenu:has(.labels .label[title="Tools"].active)
707-
.panes .pane div > .paneContainer {
708-
display: none !important;
709-
}
710-
711-
#actionTabs .tabsMenu:has(.labels .label[title="Tools"].active)
712-
.panes .pane .paneContainer .buttonLine:nth-of-type(2) {
713-
display: none !important;
714-
}
715-
716-
.svg {
717-
display: inline-block;
718-
white-space: nowrap;
719-
}
720-
721-
.icon {
722-
width: 1.5em;
723-
height: 1.5em;
724-
}
725-
726-
.iconbutton {
727-
cursor: pointer;
728-
margin: 0;
729-
padding: 4px;
730-
border-radius: 5px;
731-
background: #511D91;
732-
border: none;
733-
margin: 2px;
734-
}
735-
736-
/* Hide the Advanced section based on its title */
737-
.paneContainer:has(.header .collapse img[title="ADVANCED"]) {
738-
display: none !important;
739-
}
740-
/*
741-
.paneContainer:has(.header .collapse img[title="DISPLAY"]) {
742-
display: none !important;
743-
}
744-
*/
745-
746-
.paneContainer:has(.header .collapse img[title="OCCLUSIONS"]) {
747-
display: none !important;
748-
}
749-
750-
/*
751-
.paneContainer:has(.header .collapse img[title="DEBUG"]) {
752-
display: none !important;
753-
}*/
754-
755-
.paneContainer:has(.header .collapse img[title="METADATA"]) {
756-
display: none !important;
757-
}
758-
759-
.paneContainer:has(.header .collapse img[title="EDGE RENDERING"]) {
760-
display: none !important;
761-
}
762-
763-
.paneContainer:has(.header .collapse img[title="COLLISIONS"]) {
764-
display: none !important;
765-
}
766-
767-
.paneContainer:has(.header .collapse img[title="CONTROLS"]) {
768-
display: none !important;
769-
}
770-
771-
.paneContainer:has(.header .collapse img[title="SETUP"]) {
772-
display: none !important;
773-
}
774-
775-
.paneContainer:has(.header .collapse img[title="FILE"]) {
776-
display: none !important;
777-
}
778-
779-
.paneContainer:has(.header .collapse img[title="SNIPPET"]) {
780-
display: none !important;
781-
}
782-
783-
.paneContainer:has(.header .collapse img[title="SPRITESHEET"]) {
784-
display: none !important;
785-
}
786-
787-
.paneContainer:has(.header .collapse img[title="FONT"]) {
788-
display: none !important;
789-
}
790-
791-
.paneContainer:has(.header .collapse img[title="SHADOWS"]) {
792-
display: none !important;
793-
}
794-
795-
.paneContainer:has(.header .collapse img[title="PREVIEW"]) {
796-
display: none !important;
797-
}
798-
799-
.paneContainer:has(.header .collapse img[title="ADVANCED TEXTURE PROPERTIES"]) {
800-
display: none !important;
801-
}
802-
803-
.paneContainer:has(.header .collapse img[title="TRANSPARENCY"]) {
804-
display: none !important;
805-
}
806-
807-
.paneContainer:has(.header .collapse img[title="STENCIL"]) {
808-
display: none !important;
809-
}
810-
811-
.paneContainer:has(.header .collapse img[title="TEXTURES"]) {
812-
display: none !important;
813-
}
814-
815-
.paneContainer:has(.header .collapse img[title="LEVELS"]) {
816-
display: none !important;
817-
}
818-
819-
.paneContainer:has(.header .collapse img[title="NORMAL MAP"]) {
820-
display: none !important;
821-
}
822-
823-
.paneContainer:has(.header .collapse img[title="LIGHTING & COLORS"]) .checkBoxLine {
824-
display: none !important;
825-
}
826-
/*
827-
.copy, .expand, .listLine, .sliderLine, .coordinates {
828-
display: none !important;
829-
}*/
830-
831-
.blocklyTreeSelected {
832-
border-left: 4px solid #fc3 !important;
833-
}
834-
835-
.blocklyToolboxCategory {
836-
border-left: 0 !important; /* Reset default */
837-
}
838-
839-
.blocklyToolboxCategoryContainer[aria-selected="true"] > .blocklyToolboxCategory {
840-
border-left: 4px solid #fc3 !important;
841-
}
842-
843-
/* Remove the weird full-container outline */
844-
.blocklyToolboxCategoryContainer:focus {
845-
outline: none !important;
846-
}
847-
848-
849-
850705
/* Apply custom selection highlight only to selected top-level categories */
851706
.blocklyToolboxCategoryContainer[aria-selected="true"][aria-level="1"]
852707
> .blocklyToolboxCategory {
@@ -1023,4 +878,12 @@ path.blocklyPath.blockly-ws-search-highlight.blockly-ws-search-current {
1023878
outline-offset: 2px;
1024879
box-shadow: 0 0 0 2px #fff, 0 0 0 5px #fc3;
1025880
border-radius: 4px;
1026-
}
881+
}
882+
883+
.loading-brand {
884+
display: flex;
885+
flex-direction: column;
886+
align-items: center;
887+
gap: 15px;
888+
margin-bottom: 10px;
889+
}

0 commit comments

Comments
 (0)