ph-css icon indicating copy to clipboard operation
ph-css copied to clipboard

Advanced Java CSS 3 parser and builder

Results 10 ph-css issues
Sort by recently updated
recently updated
newest added

After parsing a css file from a Joomla site with the following simplified snippet: `:where(.some-tile:not(.preserve-color))>*{color:#161616}` The logging shows: `LoggingCSSParseExceptionCallback(45) - Failed to parse CSS: [1:8] Encountered text '.' corresponding to...

bug
pinned

Bumps [plexus-utils](https://github.com/sonatype/plexus-utils) from 2.1 to 3.0.16. Commits cf317f9 [maven-release-plugin] prepare release plexus-utils-3.0.16 26e3ae8 Remove incorrect tag element 99639d6 Little test to mimic ${project.artifactMap(g:a:c)} usage 5d46979 Needs to build with 1.7...

wontfix
dependencies

I have browser compliant mode turned on and the following CSS is incorrectly parsed: ``` div+p .foo{width:100vw} ``` But the following works fine ``` div + p .foo{width:100vw} ``` But...

bug
help wanted
pinned

See chapter 3.1 of https://www.w3.org/TR/css-gcpm-3/ Rule: nth() = ( An+B \[of \\]?) `@page :nth(2n)`

enhancement
pinned

As per https://drafts.csswg.org/css-syntax/#escape-diagram it's fully valid to have escape sequences within a URL string. Example given: `background-image: url('\2f home \2f data \2f imag.png')

enhancement
pinned

Parsing https://cdn.jsdelivr.net/npm/[email protected]/dist/semantic.css fails with `ERROR com.helger.css.handler.LoggingCSSParseExceptionCallback - Failed to parse CSS: [36251:11] Encountered text 'selector(' corresponding to token . Was expecting one of: , "(", "not"` At line 36251 is...

enhancement
pinned

Selectors such as: - :nth-child(2) - :nth-child(2n+7) - :nth-child(odd) Are all parsed to **CSSSelectorSimpleMember** with value `:nth-child(odd)` instead of **CSSSelectorMemberFunctionLike** with functionName `:nth-child(` and parameterExpression `odd` / `2`/`2n+7` etc. I...

question
pinned

https://www.w3.org/TR/css-nesting-1/ This is not a high priority for us, but I though I'd make an issue for tracking this feature. We use this parser to analyse custom CSS code written...

enhancement
pinned

This a PR to the #88

https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.css fails with `ERROR com.helger.css.handler.LoggingCSSParseExceptionCallback - Failed to parse CSS: [5368:29] Encountered text ' ' corresponding to token . Was expecting one of: , , , , , , ,...

bug