Change button styles from rounded to straight corners

This will create more visual consistency between the components
in the GUI since there are elements, such as text fields and
dropdowns that are styled with straight corners.

- Removes border radius from buttons
- Removes some redundant styles
- Adds input types that aren't currently inheriting
  defined styles

Signed-off-by: Yoshie Muranaka <yoshiemuranaka@gmail.com>
Change-Id: I6ff1bde91e2e57df01484dd20003925cd914ffa2
diff --git a/app/configuration/styles/firmware.scss b/app/configuration/styles/firmware.scss
index f3dc865..6d3c00f 100644
--- a/app/configuration/styles/firmware.scss
+++ b/app/configuration/styles/firmware.scss
@@ -105,26 +105,18 @@
   label {
     font-weight: 700;
   }
-  input {
-    height: 2.4em;
-  }
-  .button {
-    min-width: 210px;
-    width: auto;
-    margin-top: 1em;
-  }
 }
 .firmware__upload-file-name {
   text-transform: none;
 }
 .firmware__upload-chooser {
+    display: inline-block;
     width: 100%;
     background: $lightgrey;
     padding-left: 1em;
     padding-right: 1em;
     margin-bottom: 1em;
   .button {
-    vertical-align: middle;
     margin: 1em .5em 1em 0;
     min-width: 3em;
   }
@@ -132,7 +124,7 @@
     @include indeterminate-bar;
   }
   @include mediaQuery(medium) {
-    width: 70%;
+     width: 70%;
   }
 }
 .firmware__upload-station {
@@ -145,6 +137,10 @@
   padding-top: 2em;
   padding-left: 1em;
   padding-bottom: 50px;
+  padding-right: 0;
+  .button {
+    margin-top: 15px;
+  }
 }