-
-
Couldn't load subscription status.
- Fork 1.3k
web/a11y: Prefers more field contrast #17279
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: main
Are you sure you want to change the base?
Conversation
✅ Deploy Preview for authentik-docs canceled.
|
✅ Deploy Preview for authentik-storybook ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
✅ Deploy Preview for authentik-integrations canceled.
|
c967e4a to
d58c9cf
Compare
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #17279 +/- ##
==========================================
+ Coverage 92.69% 92.98% +0.28%
==========================================
Files 869 869
Lines 47949 47949
==========================================
+ Hits 44448 44583 +135
+ Misses 3501 3366 -135
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
|
authentik PR Installation instructions Instructions for docker-composeAdd the following block to your AUTHENTIK_IMAGE=ghcr.io/goauthentik/dev-server
AUTHENTIK_TAG=gh-a243da8a5dd5e46b073666620ab74bf9bdc0871d
AUTHENTIK_OUTPOSTS__CONTAINER_IMAGE_BASE=ghcr.io/goauthentik/dev-%(type)s:gh-%(build_hash)sAfterwards, run the upgrade commands from the latest release notes. Instructions for KubernetesAdd the following block to your authentik:
outposts:
container_image_base: ghcr.io/goauthentik/dev-%(type)s:gh-%(build_hash)s
global:
image:
repository: ghcr.io/goauthentik/dev-server
tag: gh-a243da8a5dd5e46b073666620ab74bf9bdc0871dAfterwards, run the upgrade commands from the latest release notes. |
8261de0 to
819b35e
Compare
819b35e to
a243da8
Compare
| PFSelect, | ||
| css` | ||
| .pf-c-select { | ||
| --pf-c-select__toggle-wrapper--MaxWidth: unset; |
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.
MaxWidth is a non-heritable property; this should be initial, not unset.
For a property that is inherited (e.g. color) it means inherit, and for a property that isn’t inherited (e.g. float) it means initial. (inherit, initial, unset, revert).
So this will do what you mean, but it's... unclear why it means that. :-)
Details
This PR adds additional support for a user's preferred level of contrast on inputs and fieldsets. The choice of field colors is deferred to the browser, allowing for default colors (with respect to our theme) to take effect.
Screenshots