diff options
author | Vodafone <onap@vodafone.com> | 2019-03-18 15:46:53 +0530 |
---|---|---|
committer | Oren Kleks <orenkle@amdocs.com> | 2019-03-25 06:35:11 +0000 |
commit | 804ec686128a49628e9f656397e4a4512e4c5714 (patch) | |
tree | fc8f51a544e0e92af80f6e44770ba3f248a8cbcd /openecomp-ui/resources/scss/modules | |
parent | c5927b27b83286c6f4aef7ae5be19a16398c23ce (diff) |
List of Input Parameters for VSP: FE
Change-Id: I17697b5646c1a201678dbab11fef28a7483fbf8c
Issue-ID: SDC-2049
Co-authored-by: rahul.ghugikar@vodafone.com, soumyarup.paul@vodafone.com
Signed-off-by: Vodafone <onap@vodafone.com>
Diffstat (limited to 'openecomp-ui/resources/scss/modules')
-rw-r--r-- | openecomp-ui/resources/scss/modules/_softwareProductValidationPage.scss | 80 | ||||
-rw-r--r-- | openecomp-ui/resources/scss/modules/_softwareProductValidationResultsPage.scss | 4 |
2 files changed, 84 insertions, 0 deletions
diff --git a/openecomp-ui/resources/scss/modules/_softwareProductValidationPage.scss b/openecomp-ui/resources/scss/modules/_softwareProductValidationPage.scss new file mode 100644 index 0000000000..3f944057cd --- /dev/null +++ b/openecomp-ui/resources/scss/modules/_softwareProductValidationPage.scss @@ -0,0 +1,80 @@ + +.vsp-validation-view { + position: relative; + .validation-tabs { + .sdc-tabs-list { + padding-left: 28px; + background-color: $tlv-gray; + box-shadow: none; + border-bottom: 1px solid $light-gray; + .sdc-tab { + @extend .heading-2; + padding-top: 10px; + margin-top: 0; + &.sdc-tab-active { + color: $blue; + font-weight: bold; + } + } + } + .sdc-tab-content { + margin-top: 0; + } + } + + .validation-view-title { + padding-bottom: 5px; + font-size: 16px; + } + + .validation-view-tab { + padding: 30px 60px 70px 60px; + } + + .validation-setup-checkbox-tree-section { + //height: 260px; + clear: both; + } + + .validation-setup-selected-tests { + height: 160px; + width: 100%; + border: solid; + } + + .validation-setup-available-tests-section { + height: 160px; + width: 100%; + overflow: auto; + clear: both; + border: solid; + } + + .validation-setup-available-tests-section::-webkit-scrollbar { + height: 8px; + width: 14px; + } + + .div-clear-both { + clear: both; + } + + .validation-view-controllers { + position: absolute; + right: 40px; + top: 10px; + display: flex; + + .proceed-to-validation-results-btn { + margin-right: 30px; + } + .change-tabs-btn { + width: 191px; + margin-right: 36px; + height: 36px; + } + } + .validation-setup-checkbox-tree-section label { + margin-bottom: 0px; + } +} diff --git a/openecomp-ui/resources/scss/modules/_softwareProductValidationResultsPage.scss b/openecomp-ui/resources/scss/modules/_softwareProductValidationResultsPage.scss new file mode 100644 index 0000000000..9ff3696dcb --- /dev/null +++ b/openecomp-ui/resources/scss/modules/_softwareProductValidationResultsPage.scss @@ -0,0 +1,4 @@ + +.validation-results-test-result-label { + padding-left: 10px +} |