Skip to content

Commit

Permalink
fix(ui): dropdown height + bookmark trigger (#6161)
Browse files Browse the repository at this point in the history
  • Loading branch information
sguiheux authored May 3, 2022
1 parent 8e3de55 commit fce521f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
6 changes: 4 additions & 2 deletions ui/src/app/views/navbar/navbar.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
{{ 'navbar_projects' | translate }}
</a>

<button nz-dropdown [nzDropdownMenu]="bookmarks" nzTrigger="click" nz-button nzType="text" [nzClickHide]="true" class="dropdown title">
<button nz-dropdown [nzDropdownMenu]="bookmarks" nz-button nzType="text" [nzClickHide]="true" class="dropdown title">
Bookmarks <i nz-icon nzType="caret-down" nzTheme="fill"></i>
</button>
<nz-dropdown-menu #bookmarks="nzDropdownMenu">
Expand Down Expand Up @@ -260,7 +260,9 @@
<!-- HELP -->
<ng-container *ngIf="help?.content?.length > 0">
<div nz-popover [nzPopoverContent]="popupTemplateHelp" class="icon popover">
<i nz-icon nzType="phone" nzTheme="fill"></i>
<div>
<i nz-icon nzType="phone" nzTheme="fill"></i>
</div>
</div>
</ng-container>
<ng-template #popupTemplateHelp>
Expand Down
1 change: 1 addition & 0 deletions ui/src/app/views/navbar/navbar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
.icon.dropdown {
width: 77px;
display: flex;
height: 50px;
align-items: center;
justify-content: center;

Expand Down

0 comments on commit fce521f

Please sign in to comment.