Fix menu overflow on mobile screens
[oweals/peertube.git] / client / src / app / menu / avatar-notification.component.html
1 <div
2   [ngbPopover]="popContent" autoClose="outside" placement="bottom-left" container="body" popoverClass="popover-notifications"
3   i18n-title title="View your notifications" class="notification-avatar" #popover="ngbPopover"
4 >
5   <div *ngIf="unreadNotifications > 0" class="unread-notifications">{{ unreadNotifications }}</div>
6
7   <img [src]="user.accountAvatarUrl" alt="Avatar" />
8 </div>
9
10 <ng-template #popContent>
11   <div class="notifications-header">
12     <div i18n>Notifications</div>
13
14     <a
15       i18n-title title="Update your notification preferences" class="glyphicon glyphicon-cog"
16       routerLink="/my-account/settings" fragment="notifications"
17     ></a>
18   </div>
19
20   <my-user-notifications [ignoreLoadingBar]="true" [infiniteScroll]="false" itemsPerPage="10"></my-user-notifications>
21
22   <a class="all-notifications" routerLink="/my-account/notifications" i18n>See all your notifications</a>
23 </ng-template>