Merge pull request #3644 from NoelDeMartin/MOBILE-4284
MOBILE-4284 quiz: Wrap question numbers textmain
commit
a25e3c6b15
|
@ -17,7 +17,7 @@
|
|||
[attr.aria-current]="!summaryShown && currentPage == question.page ? 'page' : 'false'"
|
||||
(click)="loadPage(question.page, question.slot)" detail="false">
|
||||
|
||||
<ion-label>
|
||||
<ion-label class="ion-text-wrap">
|
||||
<span *ngIf="question.type !== 'description' && question.questionnumber">
|
||||
{{ 'core.question.questionno' | translate:{$a: question.questionnumber} }}
|
||||
</span>
|
||||
|
|
|
@ -43,7 +43,7 @@
|
|||
<ion-card id="addon-mod_quiz-question-{{question.slot}}">
|
||||
<!-- "Header" of the question. -->
|
||||
<ion-item-divider>
|
||||
<ion-label>
|
||||
<ion-label class="ion-text-wrap">
|
||||
<h2 *ngIf="question.type !== 'description' && question.questionnumber" class="inline">
|
||||
{{ 'core.question.questionno' | translate:{$a: question.questionnumber} }}
|
||||
</h2>
|
||||
|
@ -116,7 +116,7 @@
|
|||
[detail]="!isSequential && canReturn" [button]="!isSequential && canReturn">
|
||||
<ion-label>
|
||||
<ion-row class="ion-align-items-center">
|
||||
<ion-col size="3" class="ion-text-center">{{ question.questionnumber }}</ion-col>
|
||||
<ion-col size="3" class="ion-text-center ion-text-wrap">{{ question.questionnumber }}</ion-col>
|
||||
<ion-col size="9" class="ion-text-center ion-text-wrap">{{ question.status }}</ion-col>
|
||||
</ion-row>
|
||||
</ion-label>
|
||||
|
|
|
@ -85,7 +85,7 @@
|
|||
<ion-card id="addon-mod_quiz-question-{{question.slot}}">
|
||||
<!-- "Header" of the question. -->
|
||||
<ion-item-divider>
|
||||
<ion-label>
|
||||
<ion-label class="ion-text-wrap">
|
||||
<h2 *ngIf="question.type !== 'description' && question.questionnumber">
|
||||
{{ 'core.question.questionno' | translate:{$a: question.questionnumber} }}
|
||||
</h2>
|
||||
|
|
Loading…
Reference in New Issue