aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/data/format/css.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/library/lux/data/format/css.lux')
-rw-r--r--stdlib/source/library/lux/data/format/css.lux20
1 files changed, 10 insertions, 10 deletions
diff --git a/stdlib/source/library/lux/data/format/css.lux b/stdlib/source/library/lux/data/format/css.lux
index f4dd728df..649e50f5d 100644
--- a/stdlib/source/library/lux/data/format/css.lux
+++ b/stdlib/source/library/lux/data/format/css.lux
@@ -54,19 +54,19 @@
(def: .public (font font)
(-> Font (CSS Special))
- (let [with_unicode (case (value@ /font.#unicode_range font)
+ (let [with_unicode (case (the /font.#unicode_range font)
{.#Some unicode_range}
- (let [unicode_range' (format "U+" (# nat.hex encoded (value@ /font.#start unicode_range))
- "-" (# nat.hex encoded (value@ /font.#end unicode_range)))]
+ (let [unicode_range' (format "U+" (# nat.hex encoded (the /font.#start unicode_range))
+ "-" (# nat.hex encoded (the /font.#end unicode_range)))]
(list ["unicode-range" unicode_range']))
{.#None}
(list))]
- (|> (list& ["font-family" (value@ /font.#family font)]
- ["src" (format "url(" (value@ /font.#source font) ")")]
- ["font-stretch" (|> font (value@ /font.#stretch) (maybe.else /value.normal_stretch) /value.value)]
- ["font-style" (|> font (value@ /font.#style) (maybe.else /value.normal_style) /value.value)]
- ["font-weight" (|> font (value@ /font.#weight) (maybe.else /value.normal_weight) /value.value)]
+ (|> (list& ["font-family" (the /font.#family font)]
+ ["src" (format "url(" (the /font.#source font) ")")]
+ ["font-stretch" (|> font (the /font.#stretch) (maybe.else /value.normal_stretch) /value.value)]
+ ["font-style" (|> font (the /font.#style) (maybe.else /value.normal_style) /value.value)]
+ ["font-weight" (|> font (the /font.#weight) (maybe.else /value.normal_weight) /value.value)]
with_unicode)
(list#each (function (_ [property value])
(format property ": " value ";")))
@@ -99,8 +99,8 @@
(:abstraction (format "@keyframes " (/value.value animation) " {"
(|> frames
(list#each (function (_ frame)
- (format (/value.value (value@ #when frame)) " {"
- (/style.inline (/style.style (value@ #what frame)))
+ (format (/value.value (the #when frame)) " {"
+ (/style.inline (/style.style (the #what frame)))
"}")))
(text.interposed ..separator))
"}")))