Skip to content

Commit

Permalink
refator(layermanaer): Better dropdown indication for layers
Browse files Browse the repository at this point in the history
 Add arrow to the settings-gear  icon
  • Loading branch information
FilipLeitner authored and jmacura committed Jul 29, 2024
1 parent f25075f commit cb60f0d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,9 @@
[ngbTooltip]="layer.abstract ? abstractTooltip : ''" [closeDelay]="layerTooltipDelay">
{{layer.title | translateHs : 'LAYERS' }}
</div>
<div class="ps-1 info_btn" style="cursor: pointer;">
<span class="icon-settingsthree-gears text-secondary"
(click)="hsLayerManagerService.toggleLayerEditor(layer,'settings','sublayers')"
<div class="ps-1 info_btn text-secondary dropdown-toggle" style="cursor: pointer;"
(click)="hsLayerManagerService.toggleLayerEditor(layer,'settings','sublayers')">
<span class="icon-settingsthree-gears"
[title]="'COMMON.info' | translateHs" data-toggle="tooltip" data-container="body"
data-placement="auto"></span>
</div>
Expand Down Expand Up @@ -177,4 +177,4 @@
[hidden]="!hsLayerSelectorService.currentLayer" class="hs-layerpanel w-100">
</hs-layer-editor>
</ div>
</div>
</div>
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,8 @@
[title]="'LAYERMANAGER.layerList.layerIsQueryable' | translateHs "
(click)="$event.stopPropagation()"></i>
</div>
<div class="ps-1 info_btn me-1">
<span class="icon-settingsthree-gears text-secondary"
(click)="hsLayerManagerService.toggleLayerEditor(layer,'settings','sublayers')"
<div class="ps-1 info_btn me-1 text-secondary dropdown-toggle" (click)="hsLayerManagerService.toggleLayerEditor(layer,'settings','sublayers')">
<span class="icon-settingsthree-gears"
[title]="'COMMON.info' | translateHs " data-toggle="tooltip" data-container="body"
data-placement="auto"></span>
</div>
Expand All @@ -63,4 +62,4 @@

</li>
</ul>
</div>
</div>

0 comments on commit cb60f0d

Please sign in to comment.