diff --git a/editor.css b/editor.css index 49594a0..9c387ac 100644 --- a/editor.css +++ b/editor.css @@ -67,15 +67,15 @@ body { cursor: default; } -.selectedmenuitem .submenu { +/* .selectedmenuitem .submenu { display: block; -} +} */ .submenu div { position: relative; } -.submenu, #sidepanel { +.submenu, #sidepanel, #filepanel { position:fixed; background-color: rgb(230, 230, 230); box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12); @@ -127,7 +127,7 @@ body { /* height: 80%; */ } -#sidebuttons { +#sidebuttons, #filebuttons { position: absolute; bottom: 20px; left: 20px; @@ -226,7 +226,7 @@ a:active { color: rgb(110, 212, 212); } -#sidebuttons button { +#sidebuttons button, #filebuttons button { font-family: 'Inter'; padding: 5 5 5 5; border-radius: 5px; @@ -238,7 +238,7 @@ a:active { cursor: pointer; } -#sidebuttons button:disabled { +#sidebuttons button:disabled, #filebuttons button:disabled { border-color: rgba(0, 0, 0, 0.267); background: rgba(120, 120, 120, 0.116); color: rgba(0, 0, 0, 0.267); @@ -246,7 +246,7 @@ a:active { cursor: not-allowed; } -#sidebuttons button:hover { +#sidebuttons button:hover, #filebuttons button:hover { box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.082), 0 2px 10px 0 rgba(0, 0, 0, 0.068); transform: scale(1.02); /* transition: all 100ms ease-in-out 0ms; */ @@ -254,7 +254,7 @@ a:active { /* transition: box-shadow ease-in-out 100ms; */ } -#sidebuttons button:active { +#sidebuttons button:active, #filebuttons button:active { background: rgba(105, 105, 105, 0.692); } @@ -267,6 +267,34 @@ label { font-family: 'Inter'; } +#filepanel { + top: 20%; + bottom:20%; + left: 20%; + right:20%; + z-index:100; + overflow: hidden; + display: none; +} + +#fileheading { + font-family: 'Inter'; + text-align: center; + font-style: normal; +} + +#curtain { + z-index: 50; + position: fixed; + top: 0px; + bottom: 0px; + left: 0px; + right: 0px; + background-color: black; + opacity: 0%; + display: none; +} + .force-graph-container .graph-tooltip { color: black; background-color: rgb(230, 230, 230); diff --git a/editor.html b/editor.html index 99d3eef..5a92f7f 100644 --- a/editor.html +++ b/editor.html @@ -9,6 +9,7 @@