[SDC-29] Amdocs OnBoard 1707 initial commit.

Change-Id: Ie4d12a3f574008b792899b368a0902a8b46b5370
Signed-off-by: AviZi <avi.ziv@amdocs.com>
diff --git a/openecomp-ui/resources/scss/components/_forms.scss b/openecomp-ui/resources/scss/components/_forms.scss
index 3c50fe6..23c58ea 100644
--- a/openecomp-ui/resources/scss/components/_forms.scss
+++ b/openecomp-ui/resources/scss/components/_forms.scss
@@ -5,10 +5,37 @@
     padding: 0 0 30px 0;
   }
 }
+
+.validation-form-content {
+	fieldset[disabled] {
+		.form-group {
+			opacity: 0.7;
+			cursor: auto;
+			pointer-events: none;
+			.dropdown-multi-select {
+				.form-group {
+					opacity: 1;
+				}
+				.Select-control {
+					background-color: $tlv-light-gray;
+				}
+			}
+		}
+	}
+}
+
 .dropdown-multi-select {
   .Select {
     display: block;
     width: 100%;
+		.Select-menu-outer {
+			.Select-option {
+				&:hover {
+					background-color: $blue;
+					color: $white;
+				}
+			}
+		}
     .Select-control {
       height: 28px;
       border-radius: 2px;
@@ -26,20 +53,24 @@
     &.Select--multi {
       .Select-value {
         color: $text-black;
-        background-color: transparent;
-        border-color: $light-gray;
-        margin-top: 2px;
-        margin-left: 2px;
-        border-radius: 1px;
+        background-color: $background-gray;
+				border: none;
+				margin: 3px 0 3px 10px;
+        border-radius: 10px;
+				padding-left: 8px;
+				padding-right: 6px;
       }
       .Select-value-icon {
-        border-right-color: $light-gray;
+        border: none;
+				float: right;
+				&:hover {
+					background-color: inherit;
+					color: inherit;
+				}
       }
       .Select-arrow-zone {
-        padding-top: 4px;
+				padding-top: 4px;
       }
     }
   }
 }
-
-