diff --git a/css/layoutit.css b/css/editor.css
similarity index 99%
rename from css/layoutit.css
rename to css/editor.css
index 0b5ccc4..4a4bb68 100644
--- a/css/layoutit.css
+++ b/css/editor.css
@@ -329,3 +329,5 @@ a.language-selected {
padding: inherit;
-webkit-text-size-adjust: inherit;
-ms-text-size-adjust: inherit; }
+ .toolbox-reset .collapse {
+ display: block; }
diff --git a/index.html b/index.html
index dcdfedf..ea42a30 100644
--- a/index.html
+++ b/index.html
@@ -11,7 +11,7 @@
-
+
diff --git a/scss/editor.scss b/scss/editor.scss
new file mode 100644
index 0000000..99ac416
--- /dev/null
+++ b/scss/editor.scss
@@ -0,0 +1,2 @@
+@import 'partials/legacy';
+@import 'partials/overwrites';
diff --git a/scss/layoutit.scss b/scss/partials/_legacy.scss
similarity index 95%
rename from scss/layoutit.scss
rename to scss/partials/_legacy.scss
index 3adaa11..8de172c 100644
--- a/scss/layoutit.scss
+++ b/scss/partials/_legacy.scss
@@ -199,16 +199,3 @@ body.devpreview { margin-left:0px;}
#downloadModal textarea { width:100%;height:280px;resize: none;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box; }
#editorModal {width:640px;}
a.language-selected { font-style: italic; font-weight: bold; }
-
-.toolbox-reset {
- background: inherit;
- color: inherit;
- display: inherit;
- /*font-family: inherit;*/
- /*font-size: inherit;*/
- line-height: inherit;
- margin: inherit;
- padding: inherit;
- -webkit-text-size-adjust: inherit;
- -ms-text-size-adjust: inherit;
-}
diff --git a/scss/partials/_overwrites.scss b/scss/partials/_overwrites.scss
new file mode 100644
index 0000000..14669c6
--- /dev/null
+++ b/scss/partials/_overwrites.scss
@@ -0,0 +1,16 @@
+.toolbox-reset {
+ background: inherit;
+ color: inherit;
+ display: inherit;
+ /*font-family: inherit;*/
+ /*font-size: inherit;*/
+ line-height: inherit;
+ margin: inherit;
+ padding: inherit;
+ -webkit-text-size-adjust: inherit;
+ -ms-text-size-adjust: inherit;
+
+ & .collapse {
+ display: block;
+ }
+}