argyleink / argyleink/open-props
:focus-visible not respecting the outline-color
- Dominant language
- HTML
- Stars
- 5.5k
- Forks
- 216
- PR merge metrics
- No merged PRs in 30d
Description
Not sure if it is intentional but ```outline-color``` does not work alone.
A fix i found is to add ```outline-style : solid;``` on the ```theme.css``` file so it respects the rule.
```css
/* :file src/extra/theme.css */
:focus-visible {
outline-style : solid;
outline-color : var(--link);
}
```
Contributor guide
No contributing guide indexed for this repository
Research direction
Start in src/extra/theme.css at the :focus-visible rule and review how outline-color behaves without an explicit outline style. Confirm the issue is resolved when outline-color alone is respected, using the provided CSS example as the expected behavior.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- css
- Domain
- frontend
- Issue type
- Bug
- Difficulty
- 1/5
- Estimated time
- Under an hour
- Activity status
- Stale
- Clarity
- Clearly specified
- Newbie friendliness
- 45/100