Skip to content
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
title: Displaying custom accessibility information
# Displaying custom accessibility information
## Introduction
Janeway 1.9 introduced an **Accessibility** page linked from the footer.
By default, this only shows the platform accessibility information,
however, there are settings to include custom press and/or journal specific
information. Journal information can only be displayed if the setting **Allow journal accessibility information** is switched on at the **Press**. It is off by default.

## Enter press accessibility information
Press accessibility information may be entered in through the **Press manager** under **Edit press details**. There is a section for **Accessibility**, within which there is a rich-text area for **Press accessibility Information**.

Press manager | Edit press details | Accessibility | Press accessibility information

![Screenshot: Press accessibility custom information field](../images/a11y-press-custom-info.png)

## Press setting to enable journal accessibility information
After the [press accessibility information](#enter-press-accessibility-information), there is a setting to **Allow journal accessibility information**. This allows each journal to have a unique accessibility statement.

Press manager | Edit press details | Accessibility | Allow journal accessibility information

![Screenshot: Press setting to allow journal custom accessibility information](../images/a11y-press-allow-journal-info.png)

> [!NOTE]
> This setting applies to all **journals** within that **press**. It provides the option to enter text onto the journal **accessibility** page, and will be hidden from readers when it is left blank.

## Enter journal accessibility text
> [!WARNING]
> The setting at press level must be switched on to make this available in the journal manager. If this section does not appear within your journal, then please contact your press manager.

Journal accessibility information may be entered through the **Journal manager** **General** page.

Journal manager | General | Accessibility | Accessibility information for the public

![Screenshot: Journal accessibility custom information field](../images/a11y-journal-custom-info.png)

## Tabular summary
This table summarises the information already provided within this document.

| Custom Press Text | Press setting to Allow Journal Text | Custom Journal Text | What is displayed |
|---|---|---|---|
| *none* | no | *not available* | Platform |
| *none* | yes | *none* | Platform |
| *none* | yes | Journal Text | Journal Text + Platform |
| Press Text | no | *not available* | Press Text + Platform |
| Press Text | yes | *none* | Press Text + Platform |
| Press Text | yes | Journal Text | Journal Text + Press Text + Platform |

3 changes: 0 additions & 3 deletions content/support/accessibility/placeholder.md

This file was deleted.

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
19 changes: 19 additions & 0 deletions themes/alpha/static/css/elements.css
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,25 @@ hr {
--flow-space: var(--space-m);
}

table {
border-collapse: collapse;
width: 100%;
--flow-space: var(--space-m);
}
table,
td,
th {
border: 1px solid var(--clr-alpha-white);
}
td,
th {
padding: var(--space-xs) var(--space-s);
text-align: left;
}
th {
font-family: var(--ff-poppins-bold);
}

/*
* Default backgrounds and focus states
* See https://piccalil.li/blog/taking-a-shot-at-the-double-focus-ring-problem-using-modern-css/
Expand Down
Loading