Skip to content

Commit

Permalink
Fix part of oppia#15968: Migrate files from Material Icon to Awesome …
Browse files Browse the repository at this point in the history
…Font Icon (oppia#16233)

* Replaced Material Icons with Font Awesome icons in Feedback Updates Section of Learner Dashboard

* Increased size of User Icon

* User Profile No Show Error Fixed

* Correct Username Alignment

* Removed inline styling

* Fix linter issue

* Fix linter issue

* Fix Linter issue

* Fixed Return Box Padding

* Fix lint issues

* Fixed Linter Issues

* Fix Linter Issues

Co-authored-by: Ayush <[email protected]>
  • Loading branch information
ayushanand16 and Ayush authored Oct 13, 2022
1 parent a26a539 commit 9d28581
Showing 1 changed file with 13 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -222,10 +222,9 @@
<tr>
<td>
<button (click)="showAllThreads()"
class="btn btn-secondary oppia-btn-secondary">
<i class="material-icons oppia-vcenter"
class="btn btn-secondary oppia-btn-secondary oppia-box-size">
<i class="fas fa-chevron-left"
title="{{ 'I18N_LEARNER_DASHBOARD_RETURN_TO_FEEDBACK_THREADS_MESSAGE' | translate }}">
&#xE5CB;
</i>
</button>
<span class="oppia-exploration-title">{{ explorationTitle }}</span>
Expand Down Expand Up @@ -255,7 +254,7 @@

<span *ngIf="!message.authorPictureDataUrl"
class="d-inline-block">
<i class="material-icons md-40 oppia-profile-picture">&#xE853;</i>
<i class="oppia-profile-alignment fas fa-user-circle fa-2x"></i>
</span>
</span>

Expand Down Expand Up @@ -333,7 +332,7 @@
</table>
<div class="feedback-thread-warning"
*ngIf="feedbackThreadActive">
<i class="material-icons">&#xE88F;</i>
<i class="fas fa-exclamation-circle"></i>
<span [innerHTML]="'I18N_LEARNER_DASHBOARD_FEEDBACK_THREAD_WARNING' | translate"></span>
</div>
<div class="oppia-learnerdashboard-pagination-container" *ngIf="paginatedThreadsList.length > 0">
Expand All @@ -356,3 +355,12 @@
</div>
</div>
</div>

<style>
.oppia-profile-alignment {
vertical-align: middle;
}
.oppia-box-size {
padding: 2px 10px;
}
</style>

0 comments on commit 9d28581

Please sign in to comment.