Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 13 additions & 6 deletions packages/ilios-common/addon/components/course/loading.gjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import BackToCourses from 'ilios-common/components/course/back-to-courses';
import animateLoading from 'ilios-common/modifiers/animate-loading';
import t from 'ember-intl/helpers/t';
import FaIcon from '@fortawesome/ember-fontawesome/components/fa-icon';
import { faSquarePlus } from '@fortawesome/free-solid-svg-icons';
import { faSquarePlus, faPlus } from '@fortawesome/free-solid-svg-icons';
<template>
<BackToCourses />

Expand Down Expand Up @@ -54,11 +54,18 @@ import { faSquarePlus } from '@fortawesome/free-solid-svg-icons';
{{t "general.sessions"}}
(xx)
</div>
<div class="actions"></div>
</div>
<div class="filter">
{{! template-lint-disable require-input-label }}
<input disabled />
<div class="actions">
<div class="filter">
{{! template-lint-disable require-input-label }}
<input disabled />
</div>
<button type="button" class="loading-text" disabled>
<FaIcon @icon={{faPlus}} />
</button>
<button type="button" class="loading-text" disabled>
{{t "general.publicationReview"}}
</button>
</div>
</div>
<section>
<div class="sessions-grid-row sessions-grid-header-row loading-text"></div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,21 @@

.course-sessions-header {
height: 2rem;
display: flex;
align-items: center;
justify-content: space-between;
@include m.for-phone-only {
height: 3rem;
}

.actions {
display: flex;
cursor: default;

.loading-text {
background-color: var(--lighter-grey);
}
}
}

.sessions-grid-header-row {
Expand Down