Skip to content

Commit

Permalink
Updates per latest refactor for focus outlines in high contrast mode
Browse files Browse the repository at this point in the history
  • Loading branch information
roblevintennis committed Sep 30, 2020
1 parent d737eca commit fd5da06
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions agnosticui-react/src/stories/button.css
Expand Up @@ -122,6 +122,8 @@

.btn:focus {
box-shadow: 0 0 0 3px rgba(55, 149, 225, 0.5);
/* Needed for High Contrast mode */
outline: 3px solid transparent;
}

/*
Expand Down
2 changes: 2 additions & 0 deletions agnosticui-svelte/src/stories/Button.svelte
Expand Up @@ -183,6 +183,8 @@
.btn:focus {
box-shadow: 0 0 0 3px rgba(55, 149, 225, 0.5);
/* Needed for High Contrast mode */
outline: 3px solid transparent;
}
/*
Expand Down
2 changes: 2 additions & 0 deletions agnosticui-vue/src/stories/Button.vue
Expand Up @@ -212,6 +212,8 @@ export default {
.btn:focus {
box-shadow: 0 0 0 3px rgba(55, 149, 225, 0.5);
/* Needed for High Contrast mode */
outline: 3px solid transparent;
}
/*
Expand Down

0 comments on commit fd5da06

Please sign in to comment.