Skip to content

Commit

Permalink
Merge branch 'table-block-contrast' of github.com:plone/volto into ta…
Browse files Browse the repository at this point in the history
…ble-block-contrast
  • Loading branch information
jackahl committed Sep 26, 2024
2 parents 5a612d9 + 61376ea commit 8f8f738
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 3 deletions.
4 changes: 4 additions & 0 deletions packages/volto/cypress/tests/core/basic/a11y.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ describe('Accessibility Tests', () => {

it('Contact form has not a11y violations', () => {
cy.navigate('/contact-form');
cy.get('#field-name').click().type('input');
cy.get('#field-from').click().type('[email protected]');
cy.get('#field-subject').click().type('input');
cy.get('#field-message').click().type('input');
cy.checkA11y();
});

Expand Down
2 changes: 2 additions & 0 deletions packages/volto/news/2570.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Change Form input:focus text color to the `textColor` value for a11y.
Add Cypress test for contact form inputs. @ThomasKindermann @tedw87
1 change: 1 addition & 0 deletions packages/volto/news/6330.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Changed sidebar accordion text colour from @teal to @textColor. @JeffersonBledsoe
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@

&:focus {
border-radius: 0;
color: @textColor;
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,14 @@

/* Styled Title */
@styledTitleFontWeight: @normal;
@styledTitleColor: @teal;
@styledTitleColor: @textColor;
@styledTitleBorder: none;

/* Styled Title States */
@styledTitleHoverBackground: @darkWhite;
@styledTitleHoverColor: @teal;
@styledTitleHoverColor: @textColor;
@styledActiveTitleBackground: @darkWhite;
@styledActiveTitleColor: @teal;
@styledActiveTitleColor: @textColor;

/* Styled Child Title States */

Expand Down

0 comments on commit 8f8f738

Please sign in to comment.