You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@datalab.apache.org by yt...@apache.org on 2021/02/24 12:49:17 UTC

[incubator-datalab] branch DATALAB-2291 created (now a211770)

This is an automated email from the ASF dual-hosted git repository.

ytykhun pushed a change to branch DATALAB-2291
in repository https://gitbox.apache.org/repos/asf/incubator-datalab.git.


      at a211770  [DATALAB-2291] moved each user to a new line in hint confirmation dialog

This branch includes the following new commits:

     new a211770  [DATALAB-2291] moved each user to a new line in hint confirmation dialog

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@datalab.apache.org
For additional commands, e-mail: commits-help@datalab.apache.org


[incubator-datalab] 01/01: [DATALAB-2291] moved each user to a new line in hint confirmation dialog

Posted by yt...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

ytykhun pushed a commit to branch DATALAB-2291
in repository https://gitbox.apache.org/repos/asf/incubator-datalab.git

commit a211770e73d85f9d3c0b8fe07acff326630771f2
Author: Yurii Tykhun <ty...@gmail.com>
AuthorDate: Wed Feb 24 14:47:57 2021 +0200

    [DATALAB-2291] moved each user to a new line in hint confirmation dialog
---
 .../confirmation-dialog/confirmation-dialog.component.html            | 2 +-
 services/self-service/src/main/resources/webapp/src/styles.scss       | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/services/self-service/src/main/resources/webapp/src/app/shared/modal-dialog/confirmation-dialog/confirmation-dialog.component.html b/services/self-service/src/main/resources/webapp/src/app/shared/modal-dialog/confirmation-dialog/confirmation-dialog.component.html
index 973b597..2bd5f97 100644
--- a/services/self-service/src/main/resources/webapp/src/app/shared/modal-dialog/confirmation-dialog/confirmation-dialog.component.html
+++ b/services/self-service/src/main/resources/webapp/src/app/shared/modal-dialog/confirmation-dialog/confirmation-dialog.component.html
@@ -42,7 +42,7 @@
       <p 
         *ngIf="data.type === 4 && data.notebook.length" 
         class="text-center delete-user scrolling" 
-        matTooltip="{{data.notebook.join(', ')}}"
+        matTooltip="{{data.notebook.join(',\n')}}"
         matTooltipPosition="above"
         matTooltipClass="group-updated-tooltip"
       >
diff --git a/services/self-service/src/main/resources/webapp/src/styles.scss b/services/self-service/src/main/resources/webapp/src/styles.scss
index f7b94d6..4aa9269 100644
--- a/services/self-service/src/main/resources/webapp/src/styles.scss
+++ b/services/self-service/src/main/resources/webapp/src/styles.scss
@@ -541,8 +541,8 @@ input[type='number'] {
 }
 
 .group-updated-tooltip {
-  word-break: break-all;
-  max-width: 400px !important;
+  white-space: pre-line;
+  max-width: fit-content !important;
 }
 
 .mat-tooltip-for-users, .mat-tooltip-description {


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@datalab.apache.org
For additional commands, e-mail: commits-help@datalab.apache.org