commit
9913a89dbf
|
@ -28,12 +28,12 @@
|
|||
<core-format-text [text]="entry.subject" [contextLevel]="contextLevel"
|
||||
[contextInstanceId]="contextInstanceId">
|
||||
</core-format-text>
|
||||
<ion-note class="ion-float-end ion-padding-left ion-text-end">
|
||||
<ion-note class="ion-float-end ion-padding-start ion-text-end">
|
||||
{{ 'addon.blog.' + entry.publishTranslated! | translate}}
|
||||
</ion-note>
|
||||
</p>
|
||||
<p>
|
||||
<ion-note class="ion-float-end ion-padding-left ion-text-end">
|
||||
<ion-note class="ion-float-end ion-padding-start ion-text-end">
|
||||
{{entry.created | coreDateDayOrTime}}
|
||||
</ion-note>
|
||||
{{entry.user && entry.user!.fullname}}
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
[attr.aria-current]="selected == chapter.id ? 'page' : 'false'" button
|
||||
[class.item-dimmed]="chapter.hidden" detail="false">
|
||||
<ion-label>
|
||||
<p [class.ion-padding-left]="addPadding && chapter.level == 1 ? true : null" class="item-heading">
|
||||
<p [class.ion-padding-start]="addPadding && chapter.level == 1 ? true : null" class="item-heading">
|
||||
<span *ngIf="showNumbers" class="addon-mod-book-number">{{chapter.indexNumber}} </span>
|
||||
<span *ngIf="showBullets" class="addon-mod-book-bullet">• </span>
|
||||
<core-format-text [text]="chapter.title" contextLevel="module" [contextInstanceId]="moduleId"
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
</core-format-text>
|
||||
</h2>
|
||||
<ion-note *ngIf="trackPosts && post.unread"
|
||||
class="ion-float-end ion-padding-left ion-text-end" [attr.aria-label]="'addon.mod_forum.unread' | translate">
|
||||
class="ion-float-end ion-padding-start ion-text-end" [attr.aria-label]="'addon.mod_forum.unread' | translate">
|
||||
<ion-icon name="fas-circle" color="primary" aria-hidden="true"></ion-icon>
|
||||
</ion-note>
|
||||
<ion-button *ngIf="optionsMenuEnabled"
|
||||
|
@ -45,7 +45,7 @@
|
|||
</div>
|
||||
<ng-container *ngIf="!displaySubject">
|
||||
<ion-note *ngIf="trackPosts && post.unread"
|
||||
class="ion-float-end ion-padding-left ion-text-end" [attr.aria-label]="'addon.mod_forum.unread' | translate">
|
||||
class="ion-float-end ion-padding-start ion-text-end" [attr.aria-label]="'addon.mod_forum.unread' | translate">
|
||||
<ion-icon name="fas-circle" color="primary" aria-hidden="true"></ion-icon>
|
||||
</ion-note>
|
||||
<ion-button *ngIf="optionsMenuEnabled"
|
||||
|
|
|
@ -129,7 +129,7 @@
|
|||
(onPostChange)="postListChanged()">
|
||||
</addon-mod-forum-post>
|
||||
</ion-card>
|
||||
<div class="ion-padding-left" *ngIf="post.children.length && post.children[0].subject">
|
||||
<div class="ion-padding-start" *ngIf="post.children && post.children.length && post.children[0].subject">
|
||||
<ng-container *ngFor="let child of post.children">
|
||||
<ng-container *ngTemplateOutlet="nestedPosts; context: {post: child}"></ng-container>
|
||||
</ng-container>
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
[attr.aria-current]="selected == item.href ? 'page' : 'false'" button detail="false">
|
||||
<ion-label [class.core-bold]="!item.href">
|
||||
<p class="item-heading">
|
||||
<span class="ion-padding-left" *ngFor="let i of getNumberForPadding(item.level)"></span>
|
||||
<span class="ion-padding-start" *ngFor="let i of getNumberForPadding(item.level)"></span>
|
||||
{{item.title}}
|
||||
</p>
|
||||
</ion-label>
|
||||
|
|
|
@ -38,7 +38,7 @@
|
|||
<p class="item-heading">{{ notification.subject }}</p>
|
||||
<p *ngIf="notification.userfromfullname">{{ notification.userfromfullname }}</p>
|
||||
</ion-label>
|
||||
<ion-note slot="end" class="ion-float-end ion-padding-left ion-text-end">
|
||||
<ion-note slot="end" class="ion-float-end ion-padding-start ion-text-end">
|
||||
{{ notification.timecreated | coreDateDayOrTime }}
|
||||
<span *ngIf="!notification.timeread">
|
||||
<ion-icon name="fas-circle" color="primary" aria-hidden="true"></ion-icon>
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
<h2>{{ rating.userfullname }}</h2>
|
||||
<p>{{ rating.rating }}</p>
|
||||
</ion-label>
|
||||
<ion-note slot="end" class="ion-padding-left" *ngIf="rating.timemodified">
|
||||
<ion-note slot="end" class="ion-padding-start" *ngIf="rating.timemodified">
|
||||
{{ rating.timemodified | coreDateDayOrTime }}
|
||||
</ion-note>
|
||||
</ion-item>
|
||||
|
|
Loading…
Reference in New Issue