-
Notifications
You must be signed in to change notification settings - Fork 82
table a11y fix #4042
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
base: next
Are you sure you want to change the base?
table a11y fix #4042
Changes from 10 commits
a3e322f
00e5e98
3f8bce4
521d1a1
0b19496
1ed98df
4c8013a
659609e
9041e23
55a4f76
ebfecdb
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -56,10 +56,6 @@ | |||||
| } | ||||||
| } | ||||||
|
|
||||||
| th[aria-sort] span.#{$prefix}--popover-container { | ||||||
| padding-left: 1rem; | ||||||
| } | ||||||
|
|
||||||
| th button.#{$prefix}--definition-term { | ||||||
| font-weight: 600; | ||||||
| } | ||||||
|
|
@@ -255,16 +251,16 @@ | |||||
| } | ||||||
|
|
||||||
| .#{$prefix}--table-sort { | ||||||
| padding-left: 0; | ||||||
| padding-right: 0; | ||||||
| // padding-left: 0; | ||||||
|
||||||
| padding-inline-start: 1rem; | ||||||
|
||||||
| padding-inline-start: 1rem; | |
| padding-inline-start: $spacing-05; |
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Prefer using padding-inline-start instead
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -62,6 +62,10 @@ div.#{$prefix}--toolbar-action.#{$prefix}--toolbar-search-container-expandable { | |||||
| will-change: transform; | ||||||
| } | ||||||
|
|
||||||
| .#{$prefix}--batch-actions.#{$prefix}--batch-actions--active.iot--table-batch-actions { | ||||||
|
||||||
| .#{$prefix}--batch-actions.#{$prefix}--batch-actions--active.iot--table-batch-actions { | |
| .#{$prefix}--batch-actions.#{$prefix}--batch-actions--active.#{$iot-prefix}--table-batch-actions { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Isn't this clickable? Why all the rules to disable interaction?
Also, why isn't it a button?