|
19 | 19 | (click)="showSearchOptions = !showSearchOptions" |
20 | 20 | aria-label="Toggle search options" |
21 | 21 | [attr.aria-expanded]="showSearchOptions" |
22 | | - class="w-10 h-10 ml-2 flex items-center justify-center border border-gray-300 rounded focus:outline-none focus:ring-0 bg-white" |
| 22 | + class="h-full flex items-center justify-center border-1 border-gray-300 rounded-r focus:outline-none focus:ring-0 bg-white" |
23 | 23 | > |
24 | 24 | <mat-icon> |
25 | 25 | {{ showSearchOptions ? 'expand_less' : 'expand_more' }} |
|
42 | 42 | <div |
43 | 43 | *ngIf="showSearchOptions" |
44 | 44 | id="students-list-search-options" |
45 | | - class="border rounded p-4 mb-4 bg-white shadow-sm" |
| 45 | + class="border rounded p-4 mb-4 bg-gray-50 shadow-sm" |
46 | 46 | > |
47 | 47 | <fieldset id="students-list-filter"> |
48 | | - <legend class="font-medium mb-2">Show Students From…</legend> |
| 48 | + <legend class="text-s font-medium mb-2">Show Students From…</legend> |
49 | 49 | <div class="inline-flex rounded-md shadow-sm" role="group"> |
50 | 50 | <button |
51 | 51 | type="button" |
|
79 | 79 | </fieldset> |
80 | 80 |
|
81 | 81 | <fieldset id="students-list-flag-sort" class="mt-4"> |
82 | | - <legend class="font-medium mb-2">Sort Flags By…</legend> |
| 82 | + <legend class="text-s font-medium mb-2">Sort Flags By…</legend> |
83 | 83 | <div class="inline-flex rounded-md shadow-sm" role="group"> |
84 | 84 | <button |
85 | 85 | type="button" |
|
143 | 143 | <thead class="bg-gray-50"> |
144 | 144 | <tr> |
145 | 145 | <th class="sticky left-0 px-3 py-2"></th> |
146 | | - <th class="px-3 py-2 cursor-pointer" (click)="sortTableBy('student.username')"> |
| 146 | + <th class="px-3 py-2 cursor-pointer" font-bold (click)="sortTableBy('student.username')"> |
147 | 147 | Username |
148 | | - <mat-icon inline *ngIf="tableSort.order==='student.username'"> |
| 148 | + <mat-icon inline *ngIf="tableSort.order==='student.username'" class="align-middle text-lg font-semibold ml-1"> |
149 | 149 | {{ tableSort.reverse ? 'expand_more' : 'expand_less' }} |
150 | 150 | </mat-icon> |
151 | 151 | </th> |
152 | | - <th class="px-3 py-2 cursor-pointer" (click)="sortTableBy('student.name')"> |
| 152 | + <th class="px-3 py-2 cursor-pointer" font-bold (click)="sortTableBy('student.name')"> |
153 | 153 | Name |
154 | | - <mat-icon inline *ngIf="tableSort.order==='student.name'"> |
| 154 | + <mat-icon inline *ngIf="tableSort.order==='student.name'" class="align-middle text-lg font-semibold ml-1"> |
155 | 155 | {{ tableSort.reverse ? 'expand_more' : 'expand_less' }} |
156 | 156 | </mat-icon> |
157 | 157 | </th> |
158 | | - <th class="px-3 py-2 cursor-pointer" (click)="sortTableBy('orderScale')"> |
| 158 | + <th class="px-3 py-2 cursor-pointer" font-bold (click)="sortTableBy('orderScale')"> |
159 | 159 | Stats |
160 | | - <mat-icon inline *ngIf="tableSort.order==='orderScale'"> |
| 160 | + <mat-icon inline *ngIf="tableSort.order==='orderScale'" class="align-middle text-lg font-semibold ml-1"> |
161 | 161 | {{ tableSort.reverse ? 'expand_more' : 'expand_less' }} |
162 | 162 | </mat-icon> |
163 | 163 | </th> |
164 | | - <th class="px-3 py-2 text-center cursor-pointer" (click)="sortTableBy('flags')"> |
| 164 | + <th class="px-3 py-2 text-center cursor-pointer" font-bold (click)="sortTableBy('flags')"> |
165 | 165 | Flags |
166 | 166 | <mat-icon inline *ngIf=" |
167 | 167 | tableSort.order==='similarityFlag'|| |
168 | 168 | tableSort.order==='targetGrade'|| |
169 | 169 | tableSort.order==='portfolioStatus' |
170 | | - "> |
| 170 | + " class="align-middle text-lg font-semibold ml-1"> |
171 | 171 | {{ tableSort.reverse ? 'expand_more' : 'expand_less' }} |
172 | 172 | </mat-icon> |
173 | 173 | </th> |
174 | | - <th class="px-3 py-2 cursor-pointer" (click)="sortTableBy('campus.name')"> |
| 174 | + <th class="px-3 py-2 cursor-pointer" font-bold (click)="sortTableBy('campus.name')"> |
175 | 175 | Campus |
176 | | - <mat-icon inline *ngIf="tableSort.order==='campus.name'"> |
| 176 | + <mat-icon inline *ngIf="tableSort.order==='campus.name'" class="align-middle text-lg font-semibold ml-1"> |
177 | 177 | {{ tableSort.reverse ? 'expand_more' : 'expand_less' }} |
178 | 178 | </mat-icon> |
179 | 179 | </th> |
180 | | - <th class="px-3 py-2 cursor-pointer" (click)="sortTableBy('tutorial.abbreviation')"> |
| 180 | + <th class="px-3 py-2 cursor-pointer" font-bold (click)="sortTableBy('tutorial.abbreviation')"> |
181 | 181 | Tutorial |
182 | | - <mat-icon inline *ngIf="tableSort.order==='tutorial.abbreviation'"> |
| 182 | + <mat-icon inline *ngIf="tableSort.order==='tutorial.abbreviation'" class="align-middle text-lg font-semibold ml-1"> |
183 | 183 | {{ tableSort.reverse ? 'expand_more' : 'expand_less' }} |
184 | 184 | </mat-icon> |
185 | 185 | </th> |
|
197 | 197 | <span class="truncate">{{ project.student.name }}</span> |
198 | 198 | </td> |
199 | 199 | <td class="px-3 py-2" (click)="viewStudent(project)"> |
200 | | - <div class="task-progress flex w-full bg-gray-200 h-6 rounded-full overflow-hidden"> |
| 200 | + <div class="task-progress flex w-full bg-gray-200 h-8 rounded-full overflow-hidden"> |
201 | 201 | <div |
202 | 202 | *ngFor="let bar of project.taskStats" |
203 | 203 | class="progress-segment flex items-center justify-center text-xs" |
|
0 commit comments