How do postcss-nesting work now with the 2024-02 edition? #1474
-
| Hi there! I have this CSS code that works fine with the 2021 edition:       & :global(li) {
        &:global(.visible > a) {
          color: var(--color-primary);
        }
        &:global(:not(.visible) > a:hover span) {
          color: var(--color-opposite);
        }
        & :global(a) {
          width: 100%;
          display: inline-block;
          padding: 0.5rem 0;
          font-weight: 600;
        }
      }It's been always working fine inside  Thanks! | 
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
| Hi @felixsanz, From that snippet alone I am unable to say what could be the cause of the difference. Do you have a minimal but complete repro? I suspect it might be caused by wrapping in  
 See how many          :is(:is(.foo .bar) :global(li)):global(.visible > a) {
          color: var(--color-primary);
        }
:is(:is(.foo .bar) :global(li)):global(:not(.visible) > a:hover span) {
          color: var(--color-opposite);
        }
:is(:is(.foo .bar) :global(li)) :global(a) {
          width: 100%;
          display: inline-block;
          padding: 0.5rem 0;
          font-weight: 600;
        } | 
Beta Was this translation helpful? Give feedback.
-
| Thanks for the fast reply @romainmenke ! I have reproduced it in a small playground: https://stackblitz.com/edit/withastro-astro-3qrvob?file=src%2Fpages%2Findex.astro The result of this: is this: So basically the first  And do you know if this is an issue with astro or it's expected and I'm doing something wrong here that I need to workaround and fix myself? Thanks 🙏 | 
Beta Was this translation helpful? Give feedback.
Traditionally you would want to first resolve/transpile all non-standard syntax and only later transpile for older browsers.
I suspect that all issues will go away if you can make Astro handle
:globalfirst and only nesting later.I don't know Astro, or
:global, so I am afraid that as much as I can help :/