Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change "Test Reports" text, nav breakpoint change from 'lg' to 'xl' #828

Merged
merged 1 commit into from
Nov 8, 2023
Merged
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
4 changes: 2 additions & 2 deletions client/components/App/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ a.nav-link {
.nav-link[aria-current='true']:after {
background: #0b60ab;
}
@media all and (min-width: 992px) {
@media all and (min-width: 1200px) {
.navbar-expand-lg .navbar-collapse ul {
display: flex;
flex-basis: auto;
Expand All @@ -79,7 +79,7 @@ a.nav-link {
margin: auto;
}
}
@media all and (max-width: 991px) {
@media all and (max-width: 1199px) {
.nav-link[aria-current='true']:after,
.nav-link:hover:after {
position: absolute;
Expand Down
4 changes: 2 additions & 2 deletions client/components/App/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const App = () => {
<Container fluid>
<Navbar
bg="light"
expand="lg"
expand="xl"
aria-label="Menu"
expanded={isNavbarExpanded}
onToggle={() => setIsNavbarExpanded(previous => !previous)}
Expand Down Expand Up @@ -67,7 +67,7 @@ const App = () => {
'/report'
)}
>
Test Reports
AT Interoperability Reports
</Nav.Link>
</li>
<li>
Expand Down
8 changes: 4 additions & 4 deletions client/components/Reports/Report.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ const Report = () => {
if (error) {
return (
<PageStatus
title="Test Reports | ARIA-AT"
heading="Test Reports"
title="AT Interop Reports | ARIA-AT"
heading="Assistive Technology Interoperability Reports"
message={error.message}
isError
/>
Expand All @@ -29,8 +29,8 @@ const Report = () => {
if (loading) {
return (
<PageStatus
title="Loading - Test Reports | ARIA-AT"
heading="Test Reports"
title="Loading - AT Interop Reports | ARIA-AT"
heading="Assistive Technology Interoperability Reports"
/>
);
}
Expand Down
8 changes: 4 additions & 4 deletions client/components/Reports/Reports.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ const Reports = () => {
if (error) {
return (
<PageStatus
title="Test Reports | ARIA-AT"
heading="Test Reports"
title="AT Interop Reports | ARIA-AT"
heading="Assistive Technology Interoperability Reports"
message={error.message}
isError
/>
Expand All @@ -24,8 +24,8 @@ const Reports = () => {
if (loading) {
return (
<PageStatus
title="Loading - Test Reports | ARIA-AT"
heading="Test Reports"
title="Loading - AT Interop Reports | ARIA-AT"
heading="Assistive Technology Interoperability Reports"
/>
);
}
Expand Down
2 changes: 1 addition & 1 deletion client/components/Reports/SummarizeTestPlanReport.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ const SummarizeTestPlanReport = ({ testPlanVersion, testPlanReports }) => {
<LinkContainer to="/reports">
<Breadcrumb.Item>
<FontAwesomeIcon icon={faHome} />
Test Reports
AT Interoperability Reports
</Breadcrumb.Item>
</LinkContainer>
<LinkContainer to={`/report/${testPlanVersion.id}`}>
Expand Down
8 changes: 4 additions & 4 deletions client/components/Reports/SummarizeTestPlanReports.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ const SummarizeTestPlanReports = ({ testPlanVersions }) => {
return (
<FullHeightContainer id="main" as="main" tabIndex="-1">
<Helmet>
<title>Test Reports | ARIA-AT</title>
<title>AT Interop Reports | ARIA-AT</title>
</Helmet>
<h1>Test Reports</h1>
<h1>Assistive Technology Interoperability Reports</h1>
<p>
There are no results to show just yet. Please check back
soon!
Expand All @@ -66,9 +66,9 @@ const SummarizeTestPlanReports = ({ testPlanVersions }) => {
return (
<FullHeightContainer id="main" as="main" tabIndex="-1">
<Helmet>
<title>Test Reports | ARIA-AT</title>
<title>AT Interop Reports | ARIA-AT</title>
</Helmet>
<h1>Test Reports</h1>
<h1>Assistive Technology Interoperability Reports</h1>
<h2>Introduction</h2>
<p>
This page offers a high-level view of all results which have
Expand Down
2 changes: 1 addition & 1 deletion client/components/Reports/SummarizeTestPlanVersion.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const SummarizeTestPlanVersion = ({ testPlanVersion, testPlanReports }) => {
<LinkContainer to="/reports">
<Breadcrumb.Item>
<FontAwesomeIcon icon={faHome} />
Test Reports
AT Interoperability Reports
</Breadcrumb.Item>
</LinkContainer>
<Breadcrumb.Item active>
Expand Down
Loading