cssutils
cssutils copied to clipboard
This avoids possible duplication if a wheel is built more than once from the same directory. I ran into this when upgrading Debian's packaging of cssutils; we're currently in a...
I know there is a link in form of the "Docs passing" image, but it's really easy to miss. I also added a link to the docs, as well as...
Backticks don't work in rST for code highlights, so the readme looks odd right now. Fixed including syntax change between Python and CSS
use code-block directive instead of triple-backtick fencing, since the file is rST not markdown
when `cssutils` is processed by `vendoring`: https://github.com/pradyunsg/vendoring it results in errors like: ```python vendoring.errors.VendoringError: Encountered import that cannot be transformed for a namespace. File "src/auto_mate_1/vendor/cssutils/css/cssrule.py", line 6 import cssutils.util ```...
Would be nice if `has(arbitrary-selector)` could be supported, for example ``` python -m cssutils.scripts.cssparse -s 'select fieldset:has(option[value="foo"]:checked) {}' ERROR Selector: Unexpected CHAR. [1:27: [] ERROR Selector: Unexpected CHAR. [1:33: =]...
I can't see any handling of a `@keyframes` rule https://developer.mozilla.org/en-US/docs/Web/CSS/@keyframes Is this within scope?
*cssutils* currently bundles the tests inside the wheel distributions. These usually are of no additional value outside of the source distributions and thus just bloat the distribution. For this reasons,...
This PR introduces a small but meaningful improvement to the `_ColorProd` function. The original code accessed `ColorValue.COLORS.keys()` directly in the `match` lambda, which works but can be optimized. I've updated...