Add Firmware page

Adds ability to upload a fimware image by local workstation
or TFTP. Also adds ability to reboot BMC from the backup image.

- Add route definition, component view, and store for
  Firmware page
- Get ActiveSoftwareImage location at /redfish/v1/Managers/bmc
- Get backup by checking for an image id that is not the same as
  the active image /redfish/v1/UpdateService/FirmwareInventory
- Switch running firmware image by making PATCH request to
  /redfish/v1/Managers/bmc

Signed-off-by: Yoshie Muranaka <yoshiemuranaka@gmail.com>
Change-Id: I04450e5a170d374122908c4c0349ba3b6e93ed2c
diff --git a/src/assets/styles/bmc/custom/_card.scss b/src/assets/styles/bmc/custom/_card.scss
new file mode 100644
index 0000000..1272189
--- /dev/null
+++ b/src/assets/styles/bmc/custom/_card.scss
@@ -0,0 +1,5 @@
+.card {
+  .bg-success {
+    background-color: $success-light !important;
+  }
+}
\ No newline at end of file
diff --git a/src/assets/styles/bmc/custom/_index.scss b/src/assets/styles/bmc/custom/_index.scss
index 0c393c5..b67712b 100644
--- a/src/assets/styles/bmc/custom/_index.scss
+++ b/src/assets/styles/bmc/custom/_index.scss
@@ -6,6 +6,7 @@
 @import "./bootstrap-grid";
 @import "./buttons";
 @import "./calendar";
+@import "./card";
 @import "./dropdown";
 @import "./forms";
 @import "./modal";