~alcinnz/haskell-stylist

ref: 62083a71501b9a9051924abf451e8f810b890363 haskell-stylist/src/Data/CSS/Style d---------
62083a71 — Adrian Cochrane 3 years ago
Add hook for callers to run their own tests against attributes.
12a80582 — Adrian Cochrane 4 years ago
Expand :is/:where lowering.
48390f5f — Adrian Cochrane 4 years ago
Codestyle: remove unnecessary parens.
5a53c0de — Adrian Cochrane 4 years ago
Move :root handling into interpretor.
2ba0a92a — Adrian Cochrane 4 years ago
Start testing counters implementations, fix syntactic shorthand lowering for counter[s]() functions.
edfaf74d — Adrian Cochrane 4 years ago
Evaluate attribute namespace selectors.
5ff74dcf — Adrian Cochrane 4 years ago
Parse namespace selectors.
086da474 — Adrian Cochrane 4 years ago
Rewrite trivial cases of :where & :is.

This is mostly for the psuedoselector rewrites performed in Data.CSS.Preprocessor.PsuedoClasses
d5e77295 — Adrian Cochrane 4 years ago
Compute correct specificity for :is() & :not() pseudoclasses.
6c1222a3 — Adrian Cochrane 4 years ago
Implement :nth-child() & :nth-of-type().

I don't think I'll implement :nth-last-child() & :nth-last-of-type() until I'm shown their value,
Haskell Stylist doesn't yet have access to the data to support them.
800ee36f — Adrian Cochrane 4 years ago
Implement :is, :where, & :not functional pseudoclasses.

This is needed by some of the lowerings for other pseudoclasses.
TODO correctly compute specificity.
7b644762 — Adrian Cochrane 4 years ago
Prepare to interpret functional pseudoclasses.
b24d4208 — Adrian Cochrane 4 years ago
Optimize: use HashMap.Lazy for cascade.
186cbffa — Adrian Cochrane 4 years ago
Improve documentation, release version 1.2
2277b56b — Adrian Cochrane 4 years ago
Write reference documentation.
c66e9303 — Adrian Cochrane 4 years ago
Test rules capturing of ConditionalStyleSheet.
e73cd8f9 — Adrian Cochrane 4 years ago
Code cleanliness: drop unneeded ' from Data.CSS.Style.Cascade.dispatch'
349b947a — Adrian Cochrane 4 years ago
Test CSS variables.
d5d20109 — Adrian Cochrane 5 years ago
Implement var() via a PropertyParser decorator.
feb616e8 — Adrian Cochrane 5 years ago
Expose hooks for implementing var().

The tricky part here is around CSS inheritance, it works naturally in the existing cascade implementation.
Next