cssutils
cssutils copied to clipboard
Would it be possible to support the @support selector please? Many Thanks in advance
currently `getUrls` method could be applied to `CSSStyleSheet` object only. Is there a simple way to get urls from single CSS rule? My workaround is like following: ```python from cssutils...
Hi! On first import of `cssutils`, the `'CSSUTILS'` logger is set up and configured with some default values, as can be seen here: https://github.com/jaraco/cssutils/blob/main/cssutils/errorhandler.py#L51-L56 This can lead to issues if...
I've encountered CSS file which `cssutils` library takes lots of seconds to parse (in fact, almost infinite). After some investigation I've minified problematic sample (as possible) and prepared reproducible code...
I'm only using this Package to validate CSS-Values, but I've stumbled upon the case where a color value is set to 'unset' and the profile validation (`cssutils.profile.validate`) returns a false...
In [this line](https://github.com/jaraco/cssutils/blob/faa8acdde684b4116b7e41a770e5ed0e3c77a9e0/examples/website.py#L40), I found I had to decode the cssText in order to print it, a legacy behavior. Let's figure out how to represent text naturally and encode only...
Pardon the unusually high specificity of this bug, but this has been a serious blocker for me, and has cost me most of a day. Basically, from my research I've...
Hello, I got wrong specificity on this selector `.form-floating > .form-control:focus ~ label::after`, with https://specificity.keegan.st/ I see 032 whereas with your tool 022 Script to reproduce : ```python from cssutils...
Why does the variable not work? ``` :root{ --font:"trebuchet ms"; --primarybg: #000000 } ``` Output ``` WARNING Property: Unknown Property name. [328:5: --font] Property: Unknown Property name. [328:5: --font] ```