garden icon indicating copy to clipboard operation
garden copied to clipboard

Generate CSS with Clojure

Results 43 garden issues
Sort by recently updated
recently updated
newest added

By using fully qualified namespaces in classnames, we can pretty much get rid of name-collisions. What if garden would do something like this: ```clojure (ns foo (:require [garden.core :refer [css]]))...

enhancement
patch welcome

After searching the issues, wiki, and readme, I don't see this feature, which would be a tremendous step in the direction of increasing compatibility and making Garden more eco-friendly: The...

enhancement
v2.x.x
v1.x.x

Whenever `selectors/&` is used an exception is raised: `Assert failed: (vector? tagged-data)` Using the vector-form works `[:&:.foo]`, but as far as I know, that can not be combined with other...

bug
v2.x.x

I have been communicating with @noprompt about the future of Garden. He has a few announcements to make to the community at large so I won't steal his thunder. Long...

When the same attribute is included multiple times in a CSS clause it seems like they should be merge rather than concatted, which produces the same attribute twice. Would this...

enhancement

RGB-fields can get non-integer values from functions `mix` and `weighted-mix`, or by simply constructing one: `(rgb 10.2 272.72 133.337)`. These kind of colors, when translated to CSS don't seem to...

bug

I stumbled onto this project the other day and think it would be a perfect fit for the Garden ecosystem. It would be great to optionally have styles turned into...

```clojure [:.Container [(s/& (s/> (s/not :.Compact) (s/+ :* :*))) {:margin-left (u/rem 2)}]] ``` prints: ``` .Container &:not(.Compact) > * + * ``` instead of ``` .Container:not(.Compact) > * + *...

bug

Hi, I'm currently using Garden and am playing around with co-locating Garden style in the same file as the Reagent component that will use that style. I have a `cljc`...