This is an automated email from the ASF dual-hosted git repository. ankovalyshyn pushed a commit to branch feature/projects in repository https://gitbox.apache.org/repos/asf/incubator-dlab.git
commit 4f47daf54b0c9a433de0dd7276eca031d86a6258 Author: Andriana Kovalyshyn <[email protected]> AuthorDate: Tue Jun 4 11:41:19 2019 +0300 [DLAB-741]: fixed issue with removing projects --- .../notification-dialog/notification-dialog.component.ts | 6 +++++- .../src/main/resources/webapp/src/assets/styles/_theme.scss | 8 +++++++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/services/self-service/src/main/resources/webapp/src/app/shared/modal-dialog/notification-dialog/notification-dialog.component.ts b/services/self-service/src/main/resources/webapp/src/app/shared/modal-dialog/notification-dialog/notification-dialog.component.ts index d4a70ad..6faf871 100644 --- a/services/self-service/src/main/resources/webapp/src/app/shared/modal-dialog/notification-dialog/notification-dialog.component.ts +++ b/services/self-service/src/main/resources/webapp/src/app/shared/modal-dialog/notification-dialog/notification-dialog.component.ts @@ -49,7 +49,10 @@ import { MatDialogRef, MAT_DIALOG_DATA } from '@angular/material'; </div> <div *ngIf="data.type === 'message'"><span [innerHTML]="data.template"></span></div> <div *ngIf="data.type === 'confirmation'" class="confirm-dialog"> - <p><strong>{{ data.item.name }}</strong> will be decommissioned.</p> + <p> + <strong class="ellipsis label-name" matTooltip="{{ data.item.name }}" matTooltipPosition="above" [matTooltipDisabled]="data.item.name.length > 35"> + {{ data.item.name }}</strong> will be decommissioned. + </p> <p class="m-top-20"><strong>Do you want to proceed?</strong></p> <div class="text-center m-top-30 m-bott-10"> @@ -69,6 +72,7 @@ import { MatDialogRef, MAT_DIALOG_DATA } from '@angular/material'; header a i { font-size: 20px; } header a:hover i { color: #35afd5; cursor: pointer; } .plur { font-style: normal; } + .label-name { display: inline-block; width: 100% } `] }) export class NotificationDialogComponent { diff --git a/services/self-service/src/main/resources/webapp/src/assets/styles/_theme.scss b/services/self-service/src/main/resources/webapp/src/assets/styles/_theme.scss index 4d5c5c1..22a3aba 100644 --- a/services/self-service/src/main/resources/webapp/src/assets/styles/_theme.scss +++ b/services/self-service/src/main/resources/webapp/src/assets/styles/_theme.scss @@ -253,7 +253,7 @@ .mat-chip-list { .mat-chip-list-wrapper { overflow-y: auto; - max-height: 115px; + max-height: 130px; } } } @@ -491,6 +491,12 @@ mat-horizontal-stepper { } .mat-table { + th.mat-header-cell { + font-size: 15px; + font-family: 'Open Sans', sans-serif; + font-weight: 600; + color: #607D8B; + } .mat-cell { word-break: break-all; padding: 5px 10px; --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
