]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/menu/avatar-notification.component.html
Remove unnecessary CSS in menu
[github/Chocobozzz/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" (hidden)="onPopoverHidden()"
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="content" [ngClass]="{ loaded: loaded }">
12 <div class="notifications-header">
13 <div i18n>Notifications</div>
14
15 <a
16 i18n-title title="Update your notification preferences" class="glyphicon glyphicon-cog"
17 routerLink="/my-account/settings" fragment="notifications"
18 ></a>
19 </div>
20
21 <div *ngIf="!loaded" class="loader">
22 <my-loader [loading]="!loaded"></my-loader>
23 </div>
24
25 <my-user-notifications
26 [ignoreLoadingBar]="true" [infiniteScroll]="false" itemsPerPage="10"
27 (notificationsLoaded)="onNotificationLoaded()"
28 ></my-user-notifications>
29
30 <a *ngIf="loaded" class="all-notifications" routerLink="/my-account/notifications" i18n>See all your notifications</a>
31 </div>
32 </ng-template>