Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/main' into tus-upload-5423
Browse files Browse the repository at this point in the history
  • Loading branch information
victorchrollo14 committed Sep 28, 2024
2 parents 3e0c4e1 + 47886f8 commit ece0a49
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/volto/cypress/tests/core/blocks/blocks-table.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ describe('Table Block Tests', () => {
cy.get('.block-editor-slateTable [role=textbox]')
.first()
.click()
.should('have.css', 'outline', 'rgb(135, 143, 147) none 0px');
.should('have.css', 'outline', 'rgba(0, 0, 0, 0.87) none 0px');

cy.get(
'.celled.fixed.table thead tr th:first-child() [contenteditable="true"]',
Expand Down
1 change: 1 addition & 0 deletions packages/volto/news/2487.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Increase specificity of table header style selector to properly override colors for better contrast @jackahl
1 change: 1 addition & 0 deletions packages/volto/news/6334.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Use lighter blue as link color in inverted tables to improve contrast for a11y @jackahl
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
}

/* Headers */
.ui.table th {
.ui.table thead th {
padding: @headerVerticalPadding @headerHorizontalPadding;
border-left: @headerDivider;
background: @headerBackground;
Expand Down Expand Up @@ -34,3 +34,8 @@
.ui.table tr:first-child > th:only-child {
border-radius: @borderRadius @borderRadius 0em 0em;
}

/* inline link color*/
.ui.table.inverted a {
color: @lightPrimaryColor;
}

0 comments on commit ece0a49

Please sign in to comment.