You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dlab.apache.org by dg...@apache.org on 2020/09/15 10:39:47 UTC

[incubator-dlab] branch DLAB-2050 created (now 921bf8e)

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

dgnatyshyn pushed a change to branch DLAB-2050
in repository https://gitbox.apache.org/repos/asf/incubator-dlab.git.


      at 921bf8e  [DLAB-2050]: Fixed space between compute status and icon should not change if expand head grid

This branch includes the following new commits:

     new 921bf8e  [DLAB-2050]: Fixed space between compute status and icon should not change if expand head grid

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@dlab.apache.org
For additional commands, e-mail: commits-help@dlab.apache.org


[incubator-dlab] 01/01: [DLAB-2050]: Fixed space between compute status and icon should not change if expand head grid

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

dgnatyshyn pushed a commit to branch DLAB-2050
in repository https://gitbox.apache.org/repos/asf/incubator-dlab.git

commit 921bf8ec2fee076b5b162be29117b54e89f1d81d
Author: Dmytro_Gnatyshyn <di...@ukr.net>
AuthorDate: Tue Sep 15 13:39:28 2020 +0300

    [DLAB-2050]: Fixed space between compute status and icon should not change if expand head grid
---
 .../management-grid/management-grid.component.html    |  2 +-
 .../management-grid/management-grid.component.scss    | 19 ++++++++++++++-----
 2 files changed, 15 insertions(+), 6 deletions(-)

diff --git a/services/self-service/src/main/resources/webapp/src/app/administration/management/management-grid/management-grid.component.html b/services/self-service/src/main/resources/webapp/src/app/administration/management/management-grid/management-grid.component.html
index fcb6901..71a20db 100644
--- a/services/self-service/src/main/resources/webapp/src/app/administration/management/management-grid/management-grid.component.html
+++ b/services/self-service/src/main/resources/webapp/src/app/administration/management/management-grid/management-grid.component.html
@@ -231,7 +231,7 @@
     </ng-container>
     <ng-container matColumnDef="type-filter" sticky>
       <th mat-header-cell *matHeaderCellDef class="filter-row-item">
-        <input placeholder="Filter by environment name" type="text" class="form-control filter-field"
+        <input placeholder="Filter by name" type="text" class="form-control filter-field"
           [value]="filterForm.type" (input)="filterForm.type = $event.target['value']" (keyup)="checkFilters()"/>
       </th>
     </ng-container>
diff --git a/services/self-service/src/main/resources/webapp/src/app/administration/management/management-grid/management-grid.component.scss b/services/self-service/src/main/resources/webapp/src/app/administration/management/management-grid/management-grid.component.scss
index 40b7bf1..5c4c62b 100644
--- a/services/self-service/src/main/resources/webapp/src/app/administration/management/management-grid/management-grid.component.scss
+++ b/services/self-service/src/main/resources/webapp/src/app/administration/management/management-grid/management-grid.component.scss
@@ -49,6 +49,9 @@
 
     .shape {
       width: 17% !important;
+      .label{
+        position: absolute;
+      }
     }
 
     .status {
@@ -56,7 +59,7 @@
     }
 
     .type {
-      width: 13%;
+      width: 11%;
     }
 
     .resources {
@@ -124,6 +127,7 @@
 
       &.actions {
         z-index: 5 !important;
+        min-width: 100px !important;
       }
     }
 
@@ -143,10 +147,6 @@
   }
 }
 
-.source .resource-wrap .resource-name .detailed-link {
-  cursor: default !important;
-}
-
 table.management {
   width: 100%;
 
@@ -189,6 +189,15 @@ table.management {
     padding: 40px;
     text-align: center;
   }
+
+  .source .resource-wrap {
+    .resource-actions{
+      padding-right: 0;
+    }
+    .resource-name .detailed-link {
+      cursor: default !important;
+    }
+  }
 }
 
 .computation{


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