💄(frontend) add focus ring to reaction emoji buttons

show outline on keyboard focus, fix when sr is opened
This commit is contained in:
Cyril
2026-02-23 10:18:17 +01:00
parent 4d6a7573c4
commit c1a797c2c1
2 changed files with 7 additions and 1 deletions

View File

@@ -12,6 +12,7 @@ and this project adheres to
- ♻️(frontend) replace custom reactions toolbar with react aria popover #985 - ♻️(frontend) replace custom reactions toolbar with react aria popover #985
- 🔒️(frontend) uninstall curl from the frontend production image #987 - 🔒️(frontend) uninstall curl from the frontend production image #987
- 💄(frontend) add focus ring to reaction emoji buttons
## [1.8.0] - 2026-02-20 ## [1.8.0] - 2026-02-20

View File

@@ -199,6 +199,11 @@ export const buttonRecipe = cva({
backgroundColor: 'primaryDark.700', backgroundColor: 'primaryDark.700',
color: 'primaryDark.100', color: 'primaryDark.100',
}, },
'&[data-focus-visible]': {
outline: '2px solid',
outlineColor: 'focusRing',
outlineOffset: '2px',
},
}, },
quaternaryText: { quaternaryText: {
backgroundColor: 'transparent', backgroundColor: 'transparent',