Skip to content

Commit

Permalink
fix: button hover/focus styles
Browse files Browse the repository at this point in the history
  • Loading branch information
danielmatthew committed Mar 4, 2022
1 parent bfaf6bd commit 236afd2
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/assets/css/custom-full.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/assets/css/custom-full.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/assets/css/custom.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/assets/css/custom.css.map

Large diffs are not rendered by default.

9 changes: 8 additions & 1 deletion scss/_tables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,15 @@ th,
white-space: nowrap;
}

.o-table__sort-btn:hover {
color: $black;
background-color: $table-striped-bg;
}

.o-table__sort-btn:focus {
box-shadow: 0 0 0 1px inset currentColor;
color: $black;
background-color: $table-striped-bg;
box-shadow: 0 0 0 2px inset $accent;
}

.table-lg .o-table__sort-btn {
Expand Down

0 comments on commit 236afd2

Please sign in to comment.