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:42:06 UTC

[incubator-dlab] branch develop updated: [DLAB-2050]: Fixed space between compute status and icon should not change if expand head grid (#909)

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

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


The following commit(s) were added to refs/heads/develop by this push:
     new 78af148  [DLAB-2050]: Fixed space between compute status and icon should not change if expand head grid (#909)
78af148 is described below

commit 78af148aa8faee5af2e89b8734148e3ac7a82368
Author: Dmytro Gnatyshyn <42...@users.noreply.github.com>
AuthorDate: Tue Sep 15 13:41:42 2020 +0300

    [DLAB-2050]: Fixed space between compute status and icon should not change if expand head grid (#909)
    
    [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