diff --git a/editor.css b/editor.css
index c3db1a4..98a7a91 100644
--- a/editor.css
+++ b/editor.css
@@ -12,7 +12,7 @@ body {
margin: 0 0 0 0;
}
-#settings {
+#mainmenu {
line-height: 2;
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
top: 0px;
@@ -67,14 +67,26 @@ body {
cursor: default;
}
-/* .selectedmenuitem .submenu {
- display: block;
-} */
-
.submenu div {
position: relative;
}
+.menuitem #filename {
+ position: fixed;
+ right: 10px;
+ padding: 10 0 10 0;
+ margin: 0 10 0 10;
+ text-align: center;
+ font-size: 1em;
+ font-family: 'Inter';
+ font-weight: normal;
+ color: rgba(120, 120, 120, 0.668);
+ background-color: transparent;
+ border-top: 4px solid transparent;
+ border-bottom: 4px solid transparent;
+ cursor: default;
+}
+
.submenu, #sidepanel, #filepanel {
position:fixed;
background-color: rgb(230, 230, 230);
@@ -98,7 +110,21 @@ body {
width: 100%;
}
-#sideheader svg {
+.sidecontenttype {
+ font-family: 'Inter';
+ float: left;
+ line-height: 2;
+ position: absolute;
+ top: 10px;
+ left: 20px;
+ color: rgba(120, 120, 120, 0.538);
+}
+
+#sidecontentedge, #sidecontentnode {
+ display: none;
+}
+
+.close {
position: absolute;
top: 20px;
right: 20px;
diff --git a/editor.html b/editor.html
index 6f9ec5c..977cc37 100644
--- a/editor.html
+++ b/editor.html
@@ -11,13 +11,14 @@