Add class to views elements
This commit is contained in:
parent
a2ffd046d6
commit
9ea6541488
|
@ -18,8 +18,11 @@
|
||||||
|
|
||||||
<span class="video-miniature-created-at-views">
|
<span class="video-miniature-created-at-views">
|
||||||
<my-date-toggle *ngIf="displayOptions.date" [date]="video.publishedAt"></my-date-toggle>
|
<my-date-toggle *ngIf="displayOptions.date" [date]="video.publishedAt"></my-date-toggle>
|
||||||
<ng-container *ngIf="displayOptions.date && displayOptions.views"> - </ng-container>
|
|
||||||
<ng-container i18n *ngIf="displayOptions.views">{{ video.views | myNumberFormatter }} views</ng-container>
|
<span class="views">
|
||||||
|
<ng-container *ngIf="displayOptions.date && displayOptions.views"> - </ng-container>
|
||||||
|
<ng-container i18n *ngIf="displayOptions.views">{{ video.views | myNumberFormatter }} views</ng-container>
|
||||||
|
</span>
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
<a tabindex="-1" *ngIf="displayOptions.by && displayOwnerAccount()" class="video-miniature-account" [routerLink]="[ '/accounts', video.byAccount ]">
|
<a tabindex="-1" *ngIf="displayOptions.by && displayOwnerAccount()" class="video-miniature-account" [routerLink]="[ '/accounts', video.byAccount ]">
|
||||||
|
|
|
@ -42,7 +42,7 @@
|
||||||
<div class="d-block d-md-none"> <!-- only shown on medium devices, has its conterpart for larger viewports below -->
|
<div class="d-block d-md-none"> <!-- only shown on medium devices, has its conterpart for larger viewports below -->
|
||||||
<h1 class="video-info-name">{{ video.name }}</h1>
|
<h1 class="video-info-name">{{ video.name }}</h1>
|
||||||
<div i18n class="video-info-date-views">
|
<div i18n class="video-info-date-views">
|
||||||
Published <my-date-toggle [date]="video.publishedAt"></my-date-toggle> - {{ video.views | myNumberFormatter }} views
|
Published <my-date-toggle [date]="video.publishedAt"></my-date-toggle> <span class="views"> - {{ video.views | myNumberFormatter }} views</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -51,7 +51,7 @@
|
||||||
<h1 class="video-info-name">{{ video.name }}</h1>
|
<h1 class="video-info-name">{{ video.name }}</h1>
|
||||||
|
|
||||||
<div i18n class="video-info-date-views">
|
<div i18n class="video-info-date-views">
|
||||||
Published <my-date-toggle [date]="video.publishedAt"></my-date-toggle> - {{ video.views | myNumberFormatter }} views
|
Published <my-date-toggle [date]="video.publishedAt"></my-date-toggle> <span class="views"> - {{ video.views | myNumberFormatter }} views</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue