diff options
Diffstat (limited to 'cds-ui/designer-client')
4 files changed, 8 insertions, 4 deletions
diff --git a/cds-ui/designer-client/src/app/modules/feature-modules/packages/configuration-dashboard/configuration-dashboard.component.html b/cds-ui/designer-client/src/app/modules/feature-modules/packages/configuration-dashboard/configuration-dashboard.component.html index ceb2bd497..74f567871 100644 --- a/cds-ui/designer-client/src/app/modules/feature-modules/packages/configuration-dashboard/configuration-dashboard.component.html +++ b/cds-ui/designer-client/src/app/modules/feature-modules/packages/configuration-dashboard/configuration-dashboard.component.html @@ -61,7 +61,7 @@ <div class="col-9"> <div class="row mb-4"> <div class="col-12 package-name deployed"> - {{viewedPackage.artifactName}}<span>.vLB.CDS</span> + {{viewedPackage.artifactName}} <img src="/assets/img/icon-deploy-inactive.svg" class="deply-status-icon"> <span class="package-version">Version 1.0.2</span> </div> diff --git a/cds-ui/designer-client/src/app/modules/feature-modules/packages/designer/designer.component.html b/cds-ui/designer-client/src/app/modules/feature-modules/packages/designer/designer.component.html index bd5b07e45..32fef0111 100644 --- a/cds-ui/designer-client/src/app/modules/feature-modules/packages/designer/designer.component.html +++ b/cds-ui/designer-client/src/app/modules/feature-modules/packages/designer/designer.component.html @@ -34,7 +34,7 @@ <div class="modal-body"> <div class="row package-info"> <div class="col-12"> - <h3>Test Package<span>.vLB.CDS</span> + <h3>Test Package <span class="package-version">Version 1.0.2</span></h3> </div> <div class="col-12 mb-3"> diff --git a/cds-ui/designer-client/src/app/modules/feature-modules/packages/packages-dashboard/package-list/package-list.component.html b/cds-ui/designer-client/src/app/modules/feature-modules/packages/packages-dashboard/package-list/package-list.component.html index 49c80d3ac..91c7f5b96 100644 --- a/cds-ui/designer-client/src/app/modules/feature-modules/packages/packages-dashboard/package-list/package-list.component.html +++ b/cds-ui/designer-client/src/app/modules/feature-modules/packages/packages-dashboard/package-list/package-list.component.html @@ -29,7 +29,7 @@ (click)="testDispatch(bluePrint)"> <!-- <img class="icon-deployed" src="/assets/img/icon-deploy.svg"> --> <p class="packageName" tooltip="{{bluePrint.artifactName}}" placement="bottom"> - {{bluePrint.artifactName}}<span>.vLB.CDS</span></p> + {{bluePrint.artifactName}}</p> <span class="package-version">V 1.0.2</span> </a> diff --git a/cds-ui/designer-client/src/styles.css b/cds-ui/designer-client/src/styles.css index 0f79bc1b7..3c0a049bf 100644 --- a/cds-ui/designer-client/src/styles.css +++ b/cds-ui/designer-client/src/styles.css @@ -2001,7 +2001,7 @@ hr{ } .modal-header{ border-bottom-color: #ECEDF2 !important; - padding: 1rem 1.5rem !important; + padding: .7rem 1.5rem !important; } .modal-footer{ border-top: 0 !important; @@ -2024,6 +2024,10 @@ hr{ .modal-footer .btn-secondary:hover{ opacity: 1; } +.modal-footer .btn-secondary:active{ + background-color: #E7F1FC !important; + color: #1B3E6F !important; +} .action-button span{ width: 100%; display: inline-block; |