Restructure Sass files
- Consolidate all bootstrap partials
- Combine all vendor overrides with BMC custom styles
- Updated paths for Vuepress docs
Signed-off-by: Yoshie Muranaka <yoshiemuranaka@gmail.com>
Change-Id: I1a9f68bdf90edae0d1e38f36ac670bf6426ec8a5
diff --git a/docs/.vuepress/styles/_bmc-overrides.scss b/docs/.vuepress/styles/_bmc-overrides.scss
deleted file mode 100644
index c8edbdf..0000000
--- a/docs/.vuepress/styles/_bmc-overrides.scss
+++ /dev/null
@@ -1,2 +0,0 @@
-@import "src/assets/styles/vendor-overrides/bootstrap/index";
-@import "src/assets/styles/vendor-overrides/bootstrap-vue/index";
\ No newline at end of file
diff --git a/docs/.vuepress/styles/_bmc.scss b/docs/.vuepress/styles/_bmc.scss
deleted file mode 100644
index 09d1f01..0000000
--- a/docs/.vuepress/styles/_bmc.scss
+++ /dev/null
@@ -1,2 +0,0 @@
-@import "src/assets/styles/bmc/helpers";
-@import "src/assets/styles/bmc/base";
\ No newline at end of file
diff --git a/docs/.vuepress/styles/_bootstrap-vue.scss b/docs/.vuepress/styles/_bootstrap-vue.scss
deleted file mode 100644
index 5141039..0000000
--- a/docs/.vuepress/styles/_bootstrap-vue.scss
+++ /dev/null
@@ -1 +0,0 @@
-@import "src/assets/styles/vendor/bootstrap-vue/index";
\ No newline at end of file
diff --git a/docs/.vuepress/styles/_bootstrap.scss b/docs/.vuepress/styles/_bootstrap.scss
deleted file mode 100644
index aece8f7..0000000
--- a/docs/.vuepress/styles/_bootstrap.scss
+++ /dev/null
@@ -1,35 +0,0 @@
-// Removing reboot and type imports to resolve
-// conflicts with vuepress styles
-@import "~bootstrap/scss/functions";
-@import "~bootstrap/scss/variables";
-@import "~bootstrap/scss/mixins";
-@import "~bootstrap/scss/root";
-@import "~bootstrap/scss/reboot";
-@import "~bootstrap/scss/alert";
-@import "~bootstrap/scss/badge";
-@import "~bootstrap/scss/breadcrumb";
-@import "~bootstrap/scss/button-group";
-@import "~bootstrap/scss/buttons";
-@import "~bootstrap/scss/card";
-@import "~bootstrap/scss/close";
-@import "~bootstrap/scss/code";
-@import "~bootstrap/scss/custom-forms";
-@import "~bootstrap/scss/dropdown";
-@import "~bootstrap/scss/forms";
-@import "~bootstrap/scss/grid";
-@import "~bootstrap/scss/images";
-@import "~bootstrap/scss/input-group";
-@import "~bootstrap/scss/list-group";
-@import "~bootstrap/scss/media";
-@import "~bootstrap/scss/modal";
-@import "~bootstrap/scss/nav";
-@import "~bootstrap/scss/navbar";
-@import "~bootstrap/scss/pagination";
-@import "~bootstrap/scss/popover";
-@import "~bootstrap/scss/progress";
-@import "~bootstrap/scss/spinners";
-@import "~bootstrap/scss/tables";
-@import "~bootstrap/scss/toasts";
-@import "~bootstrap/scss/tooltip";
-@import "~bootstrap/scss/transitions";
-@import "~bootstrap/scss/utilities";
\ No newline at end of file
diff --git a/docs/.vuepress/styles/_index.scss b/docs/.vuepress/styles/_index.scss
index 8587715..157898e 100644
--- a/docs/.vuepress/styles/_index.scss
+++ b/docs/.vuepress/styles/_index.scss
@@ -1,5 +1,10 @@
+// Custom and Vendor helpers
+@import "src/assets/styles/bmc/helpers/index";
+@import "src/assets/styles/bootstrap/helpers";
-@import "./bmc";
-@import "./bootstrap";
-@import "./bootstrap-vue";
-@import "./bmc-overrides";
+// Vendor styles
+@import "src/assets/styles/bootstrap/index";
+@import "~bootstrap-vue/src/index";
+
+// Custom BMC styles
+@import "src/assets/styles/bmc/custom/index";