Skip to content

Commit 492ce1b

Browse files
committed
replaces usage of SCSS mixin with class equivalent.
1 parent f07073f commit 492ce1b

File tree

20 files changed

+10
-50
lines changed

20 files changed

+10
-50
lines changed

packages/frontend/app/components/courses/root.gjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ export default class CoursesRootComponent extends Component {
257257
</div>
258258
<section class="courses">
259259
<div class="header">
260-
<h2 data-test-courses-header-title class="title">
260+
<h2 data-test-courses-header-title class="main-list-box-header-title">
261261
{{t "general.courses"}}
262262
({{this.filteredCourses.length}})
263263
</h2>

packages/frontend/app/components/curriculum-inventory/reports.gjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ export default class CurriculumInventoryReportsComponent extends Component {
186186
</div>
187187
<section class="reports">
188188
<div class="header">
189-
<h2 class="title">
189+
<h2 class="main-list-box-header-title">
190190
{{t "general.curriculumInventoryReports"}}
191191
</h2>
192192
{{#if (and this.canCreate this.selectedProgram)}}

packages/frontend/app/components/curriculum-inventory/sequence-block-list.gjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ export default class SequenceBlockListComponent extends Component {
5454
...attributes
5555
>
5656
<div class="header" data-test-header>
57-
<div class="title" data-test-title>
57+
<div class="main-list-box-header-title" data-test-title>
5858
{{t "general.sequenceBlocks"}}
5959
({{@sequenceBlocks.length}})
6060
</div>

packages/frontend/app/components/ilios-users.gjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ export default class IliosUsersComponent extends Component {
112112
</div>
113113
<section class="users">
114114
<div class="header" data-test-header>
115-
<span class="title" data-test-title>
115+
<span class="main-list-box-header-title" data-test-title>
116116
{{t "general.users"}}
117117
</span>
118118
<div class="actions">

packages/frontend/app/components/instructor-groups/root.gjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ export default class InstructorGroupsRootComponent extends Component {
151151

152152
<div class="main-list">
153153
<div class="header">
154-
<h2 class="title">
154+
<h2 class="main-list-box-header-title">
155155
{{t "general.instructorGroups"}}
156156
{{#if this.isLoaded}}
157157
({{this.filteredInstructorGroups.length}})

packages/frontend/app/components/learner-groups/root.gjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,7 @@ export default class LearnerGroupsRootComponent extends Component {
379379

380380
<div class="main-list">
381381
<div class="header">
382-
<h2 class="title">
382+
<h2 class="main-list-box-header-title">
383383
{{t "general.learnerGroups"}}
384384
{{#if this.isLoaded}}
385385
({{this.filteredLearnerGroups.length}})

packages/frontend/app/components/program-year/list.gjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ export default class ProgramYearListComponent extends Component {
136136
<div class="program-year-list main-section" data-test-program-year-list ...attributes>
137137
<section class="program-years" data-test-years>
138138
<div class="header">
139-
<div class="title">
139+
<div class="main-list-box-header-title">
140140
{{t "general.programYears"}}
141141
</div>
142142
{{#if @canCreate}}

packages/frontend/app/components/programs/root.gjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ export default class ProgramRootComponent extends Component {
9393

9494
<div class="main-list">
9595
<div class="header">
96-
<h2 class="title">
96+
<h2 class="main-list-box-header-title">
9797
{{t "general.programs"}}
9898
</h2>
9999
<div class="actions">

packages/frontend/app/components/reports/subjects-list.gjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ export default class ReportsSubjectsListComponent extends Component {
168168
</div>
169169
<section class="reports">
170170
<div class="header">
171-
<h2 data-test-courses-header-title class="title">
171+
<h2 data-test-courses-header-title class="main-list-box-header-title">
172172
{{t "general.reports"}}
173173
({{this.filteredReports.length}})
174174
</h2>

packages/frontend/app/components/school-list.gjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ export default class SchoolListComponent extends Component {
8585
<section class="school-list main-section" data-test-school-list ...attributes>
8686
<section class="schools">
8787
<div class="header">
88-
<h2 class="title">
88+
<h2 class="main-list-box-header-title">
8989
{{t "general.schools"}}
9090
</h2>
9191
{{#if this.currentUser.isRoot}}

0 commit comments

Comments
 (0)