Skip to content
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

fix(ISSUE-1474): add -webkit-calendar-picker-indicator pseudoclass #1475

Merged
merged 3 commits into from
Sep 13, 2024

Conversation

corradopetrelli
Copy link
Contributor

Resolves: #1474

Copy link

changeset-bot bot commented Sep 12, 2024

🦋 Changeset detected

Latest commit: e4bbd03

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 27 packages
Name Type
@vanilla-extract/css Minor
@vanilla-extract/integration Patch
@vanilla-extract/rollup-plugin Patch
@fixtures/features Patch
@fixtures/layers Patch
@fixtures/low-level Patch
@fixtures/next-app-router Patch
@fixtures/next-pages-router Patch
@fixtures/recipes Patch
@fixtures/sprinkles Patch
@fixtures/template-string-paths Patch
@fixtures/themed Patch
@fixtures/thirdparty Patch
@fixtures/unused-modules Patch
@fixtures/thirdparty-dep Patch
@fixtures/thirdparty-dep-dep Patch
vanilla-extract-example-remix Patch
vanilla-extract-example-webpack-react Patch
@vanilla-extract-private/tests Patch
@vanilla-extract/esbuild-plugin-next Patch
@vanilla-extract/esbuild-plugin Patch
@vanilla-extract/jest-transform Patch
@vanilla-extract/parcel-transformer Patch
@vanilla-extract/vite-plugin Patch
@vanilla-extract/webpack-plugin Patch
@vanilla-extract-private/test-helpers Patch
@vanilla-extract/next-plugin Patch

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR

@askoufis
Copy link
Contributor

askoufis commented Sep 13, 2024

Thanks for the PR! There's many browser-specific psuedo-elements, some with very little documentation, so it's a bit hard to keep up with them all. Thanks for the help.

For future reference, you can generate CSS using arbitrary psuedo-elements/selectors via the selectors property, in case it's not available at the top-level of the style object:

import { layer, style } from "@vanilla-extract/css";

export const myStyle = style({
  selectors: {
    "&::-whatever-you-want": {
      color: "red",
    },
  },
});

@askoufis askoufis enabled auto-merge (squash) September 13, 2024 05:06
@askoufis askoufis merged commit cd9d8b2 into vanilla-extract-css:master Sep 13, 2024
5 checks passed
@corradopetrelli
Copy link
Contributor Author

@askoufis thank you, that was exactly the workaround I used 😄

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Missing pseudo-class: -webkit-calendar-picker-indicator
2 participants