diff options
Diffstat (limited to 'stdlib/source/library/lux/data/format/css/style.lux')
-rw-r--r-- | stdlib/source/library/lux/data/format/css/style.lux | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/stdlib/source/library/lux/data/format/css/style.lux b/stdlib/source/library/lux/data/format/css/style.lux index 5f2c68888..a8ad45203 100644 --- a/stdlib/source/library/lux/data/format/css/style.lux +++ b/stdlib/source/library/lux/data/format/css/style.lux @@ -10,19 +10,19 @@ ["#." value (#+ Value)] ["#." property (#+ Property)]]) -(abstract: #export Style - Text - +(abstract: .public Style {#.doc "The style associated with a CSS selector."} - (def: #export empty + Text + + (def: .public empty Style (:abstraction "")) - (def: #export separator + (def: .public separator " ") - (def: #export (with [property value]) + (def: .public (with [property value]) (All [brand] (-> [(Property brand) (Value brand)] (-> Style Style))) @@ -30,7 +30,7 @@ (format (//property.name property) ": " (//value.value value) ";" ..separator) :abstraction)) - (def: #export inline + (def: .public inline (-> Style Text) (|>> :representation)) ) |