Skip to content

Commit

Permalink
ui(layer-list): Remove filter button less visible (#504)
Browse files Browse the repository at this point in the history
* ui(layer-list): Remove filter button less visible

* ui(layer-list): Remove filter button less visible

* ui(layer-list): Remove filter button less visible
  • Loading branch information
PhilippeLafreniere18 authored and mbarbeau committed Nov 5, 2019
1 parent 0ee1aca commit 1373909
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
[matTooltip]="'igo.geo.layer.sortMapOrder' | translate"
matTooltipShowDelay="500"
(click)="toggleSort(false)">
<mat-icon color="warn" svgIcon="alert"></mat-icon>
<mat-icon color="warn" svgIcon="sort-variant-remove"></mat-icon>
</button>
<button
mat-icon-button
Expand All @@ -44,7 +44,7 @@
matTooltipShowDelay="500"
[color]="onlyVisible ? 'warn' : 'primary'"
(click)="toggleOnlyVisible()">
<mat-icon [svgIcon]="!onlyVisible ? 'eye' : 'alert'"></mat-icon>
<mat-icon [svgIcon]="!onlyVisible ? 'eye' : 'sort-variant-remove'"></mat-icon>
</button>
<button
mat-icon-button
Expand All @@ -55,7 +55,7 @@
matTooltipShowDelay="500"
[color]="onlyInRange ? 'warn' : 'primary'"
(click)="toggleOnlyInRange()">
<mat-icon [svgIcon]="!onlyInRange ? 'playlist-check' : 'alert'"></mat-icon>
<mat-icon [svgIcon]="!onlyInRange ? 'playlist-check' : 'sort-variant-remove'"></mat-icon>
</button>
</ng-container>
</mat-list-item>
Expand Down

0 comments on commit 1373909

Please sign in to comment.