Skip to content

Commit

Permalink
KYLO-2978 Fixed disappearing dragged items
Browse files Browse the repository at this point in the history
  • Loading branch information
Gregory Hart committed Dec 7, 2018
1 parent 1789556 commit 40f9a6d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
5 changes: 4 additions & 1 deletion ui/ui-app/src/main/resources/static/assets/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,9 @@ md-list md-datepicker .md-button.md-icon-button {
.pointer {
cursor: pointer;
}
.cursor-move {
cursor: move;
}

/* Primary content area */

Expand Down Expand Up @@ -1523,4 +1526,4 @@ table.pvtTable tr td {

.pvtRendererArea { padding: 5px;}

/** Pivot table - Charts UI - End **/
/** Pivot table - Charts UI - End **/
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

<div class="kylo-mat-list-item-content pad-left pad-right" fxLayout="row" fxLayoutAlign="start center">

<mat-icon matListAvatar class="kylo-mat-list-avatar" color="accent" [(fontIcon)]="row.typeIcon" fontSet="mdi"></mat-icon>
<mat-icon matListAvatar class="kylo-mat-list-avatar" color="accent" [fontIcon]="row.typeIcon" fontSet="mdi"></mat-icon>

<div class="kylo-mat-list-text">
<mat-form-field mat-line style="width:170px" *ngIf="!row.deleted">
Expand All @@ -50,7 +50,7 @@ <h4 matLine *ngIf="row.deleted" class="kylo-mat-list-color text-deleted">{{row.n
<mat-icon class="mat-24 kylo-mat-list-color">restore_from_trash</mat-icon>
</button>

<mat-icon dndHandle class="mat-24 kylo-mat-list-color kylo-mat-list-handle">drag_handle</mat-icon>
<mat-icon class="mat-24 kylo-mat-list-color kylo-mat-list-handle cursor-move">drag_handle</mat-icon>

</div>
<mat-divider class="kylo-mat-divider" [inset]="false"></mat-divider>
Expand All @@ -62,4 +62,4 @@ <h4 matLine *ngIf="row.deleted" class="kylo-mat-list-color text-deleted">{{row.n
#placeholder></div>

</div>
</form>
</form>

0 comments on commit 40f9a6d

Please sign in to comment.