Add new code new version

Change-Id: Ic02a76313503b526f17c3df29eb387a29fe6a42a
Signed-off-by: Michael Lando <ml636r@att.com>
diff --git a/openecomp-ui/resources/scss/components/_toggleInput.scss b/openecomp-ui/resources/scss/components/_toggleInput.scss
new file mode 100644
index 0000000..fcf0902
--- /dev/null
+++ b/openecomp-ui/resources/scss/components/_toggleInput.scss
@@ -0,0 +1,62 @@
+.toggle-input-wrapper {
+  $toggle-width: 40px;
+  $toggle-height: 20px;
+  display: table;
+  .toggle-switch, .toggle-input-label {
+    display: table-cell;
+    vertical-align: middle;
+    padding-left: 10px;
+  }
+  .toggle {
+    position: absolute;
+    margin-left: -9999px;
+    visibility: hidden;
+  }
+  .toggle + label {
+    @extend %noselect;
+    display: block;
+    position: relative;
+    cursor: pointer;
+    outline: none;
+  }
+
+  input.toggle-round-flat + label {
+    padding: 1px;
+    width: $toggle-width;
+    height: $toggle-height;
+    background-color: $dark-gray;
+    border-radius: $toggle-height;
+    transition: background 0.4s;
+  }
+  input.toggle-round-flat + label:before,
+  input.toggle-round-flat + label:after {
+    display: block;
+    position: absolute;
+    content: "";
+  }
+  input.toggle-round-flat + label:before {
+    top: 1px;
+    left: 1px;
+    bottom: 1px;
+    right: 1px;
+    background-color: $white;
+    border-radius: $toggle-height;
+    transition: background 0.4s;
+  }
+  input.toggle-round-flat + label:after {
+    top: 4px;
+    left: 4px;
+    bottom: 4px;
+    width: $toggle-height - 8;
+    background-color: $dark-gray;
+    border-radius: $toggle-height - 8;
+    transition: margin 0.4s, background 0.4s;
+  }
+  input.toggle-round-flat:checked + label {
+    background-color: $link-blue;
+  }
+  input.toggle-round-flat:checked + label:after {
+    margin-left: $toggle-height;
+    background-color: $link-blue;
+  }
+}