You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@streampipes.apache.org by ri...@apache.org on 2020/09/11 20:34:32 UTC

[incubator-streampipes] branch dev updated: [hotfix] Fix CSS layout bug in pipeline element recommendation

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

riemer pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/incubator-streampipes.git


The following commit(s) were added to refs/heads/dev by this push:
     new 9b58335  [hotfix] Fix CSS layout bug in pipeline element recommendation
9b58335 is described below

commit 9b583353726f1aa63c365be2cb1651b4ef4332e6
Author: Dominik Riemer <ri...@fzi.de>
AuthorDate: Tue Sep 8 21:34:15 2020 +0200

    [hotfix] Fix CSS layout bug in pipeline element recommendation
---
 .../pipeline-element-recommendation.component.html                      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ui/src/app/editor/components/pipeline-element-recommendation/pipeline-element-recommendation.component.html b/ui/src/app/editor/components/pipeline-element-recommendation/pipeline-element-recommendation.component.html
index cab19b8..fe13f3c 100644
--- a/ui/src/app/editor/components/pipeline-element-recommendation/pipeline-element-recommendation.component.html
+++ b/ui/src/app/editor/components/pipeline-element-recommendation/pipeline-element-recommendation.component.html
@@ -18,7 +18,7 @@
 
 <div *ngIf="recommendationsPrepared && recommendedElements.length > 0" class="cv-wrapper" [ngClass]="recommendationsShown ? 'opened-nav' : ''">
     <ul>
-        <li *ngFor="let recommendedElement of recommendedElements"
+        <li *ngFor="let recommendedElement of recommendedElements" style="z-index: -1;"
             [style]="recommendedElement.layoutSettings.skewStyle">
             <a [style]="recommendedElement.layoutSettings.unskewStyle" [ngClass]="recommendedElement.layoutSettings.type" (click)="create(recommendedElement)" *ngIf="recommendedElement.name">
             </a>