zignd / HTML-CSS-Class-Completion

:chocolate_bar: Visual Studio Code extension that provides CSS class name completion for the HTML class attribute based on the CSS files in your workspace
https://marketplace.visualstudio.com/items?itemName=Zignd.html-css-class-completion
MIT License
248 stars 83 forks source link

Parsing css files containing nested elements not working #437

Open fen-git opened 7 months ago

fen-git commented 7 months ago

Extension do not parse css files containing nested elements Tested it with these few lines. Parsing is successful when nested elements are removed

.testclass{
    display: flex;
    flex-wrap: wrap;
}

.nestParent{
    position:relative;
    width:100%;

    .nestChild{
        position: absolute;
        top:0;
        left: 0;
    }
}