Skip to content

Commit

Permalink
[#12383] Instructor edit feedback session page: missing indication fo…
Browse files Browse the repository at this point in the history
…r tooltip (#12384)

* Instructor edit feedback session page: missing indication for tooltip #12383

* changes for tool-tip class and test case fix as requested as test cases were failing

* Fixing tooltip indication issue for Multiple Select Answers

---------

Co-authored-by: rai31218 <[email protected]>
Co-authored-by: Zhao Jingjing <[email protected]>
  • Loading branch information
3 people authored Apr 19, 2023
1 parent fb2a91b commit 205e652
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ exports[`McqQuestionEditDetailsFormComponent should snap when questionDropdownEn
class="form-check form-check-inline"
>
<label
class="form-check-label fw-bold"
class="form-check-label ngb-tooltip-class fw-bold"
container="body"
ngbtooltip="Assign weights to the choices for calculating statistics."
>
Expand Down Expand Up @@ -204,7 +204,7 @@ exports[`McqQuestionEditDetailsFormComponent should snap when questionDropdownEn
class="form-check form-check-inline"
>
<label
class="form-check-label fw-bold"
class="form-check-label ngb-tooltip-class fw-bold"
container="body"
ngbtooltip="Assign weights to the choices for calculating statistics."
>
Expand Down Expand Up @@ -367,7 +367,7 @@ exports[`McqQuestionEditDetailsFormComponent should snap with default view i.e.
class="form-check form-check-inline"
>
<label
class="form-check-label fw-bold"
class="form-check-label ngb-tooltip-class fw-bold"
container="body"
ngbtooltip="Assign weights to the choices for calculating statistics."
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,12 @@
<div class="col-md-6">
<div class="col-md-12">
<div class="form-check form-check-inline" *ngIf="!isGeneratedOptionsEnabled">
<label class="form-check-label fw-bold" ngbTooltip="Assign weights to the choices for calculating statistics."
<label class="form-check-label ngb-tooltip-class fw-bold" ngbTooltip="Assign weights to the choices for calculating statistics."
container="body">
<input id="weights-checkbox" class="form-check-input" type="checkbox" [ngModel]="model.hasAssignedWeights"
[disabled]="!isEditable"
(ngModelChange)="triggerWeightsColumn($event)">
(ngModelChange)="triggerWeightsColumn($event)"
>
Options are weighted
</label>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<div class="col-md-6">
<div class="col-md-12">
<div class="form-check form-check-inline" *ngIf="!isGeneratedOptionsEnabled">
<label class="form-check-label fw-bold" ngbTooltip="Assign weights to the choices for calculating statistics."
<label class="form-check-label ngb-tooltip-class fw-bold" ngbTooltip="Assign weights to the choices for calculating statistics."
container="body">
<input id="weights-checkbox" class="form-check-input" type="checkbox" [ngModel]="model.hasAssignedWeights"
[disabled]="!isEditable" (ngModelChange)="triggerWeightsColumn($event)">
Expand Down

0 comments on commit 205e652

Please sign in to comment.