11module Css.Animations exposing
22 ( Property , keyframes, Keyframes
3- , opacity, transform, all, backgroundSize, backgroundSize2, border, property
4- , backgroundColor
3+ , opacity, transform, all, backgroundSize, backgroundSize2, border, property, backgroundColor, border2, border3, borderBottom, borderBottom2, borderBottom3, custom
54 )
65
76{- |
@@ -20,15 +19,7 @@ Some of the animatable properties (except for experimental properties, or proper
2019
2120**NOTE:** We're looking to expand this list, but only on the `phantom-types` branch! See <https://github.com/rtfeldman/elm-css/issues/392>
2221
23- @docs opacity, transform, transformOrigin, translate, all, backgroundSize, backgroundSize2, border, property
24-
25- border2 : Length compatible units -> Length compatible units -> Property
26- border2 arg1 arg2 =
27- Property ("border:" ++ arg1.value ++ " " ++ arg2.value)
28-
29- border3 : Length compatible units -> Length compatible units -> Length compatible units -> Property
30- border3 arg1 arg2 arg3 =
31- Property ("border:" ++ arg1.value ++ " " ++ arg2.value ++ " " ++ arg3.value)
22+ @docs opacity, transform, all, backgroundSize, backgroundSize2, border, property, backgroundColor, border2, border3, borderBottom, borderBottom2, borderBottom3, custom
3223
3324-}
3425
@@ -100,51 +91,61 @@ custom name value =
10091 Property ( name ++ " :" ++ value)
10192
10293
94+ {- | -}
10395all : { compatible | value : String , all : Compatible } -> Property
10496all { value } =
10597 Property ( " all:" ++ value)
10698
10799
100+ {- | -}
108101backgroundColor : { compatible | value : String , color : Compatible } -> Property
109102backgroundColor { value } =
110103 Property ( " background-color:" ++ value)
111104
112105
106+ {- | -}
113107backgroundSize : LengthOrAutoOrCoverOrContain compatible -> Property
114108backgroundSize { value } =
115109 Property ( " background-size:" ++ value)
116110
117111
112+ {- | -}
118113backgroundSize2 : LengthOrAutoOrCoverOrContain compatible -> LengthOrAutoOrCoverOrContain compatible -> Property
119114backgroundSize2 arg1 arg2 =
120115 Property ( " background-size:" ++ arg1. value ++ " " ++ arg2. value)
121116
122117
118+ {- | -}
123119border : Length compatible units -> Property
124120border { value } =
125121 Property ( " border:" ++ value)
126122
127123
124+ {- | -}
128125border2 : Length compatible units -> Length compatible units -> Property
129126border2 arg1 arg2 =
130127 Property ( " border:" ++ arg1. value ++ " " ++ arg2. value)
131128
132129
130+ {- | -}
133131border3 : Length compatible units -> Length compatible units -> Length compatible units -> Property
134132border3 arg1 arg2 arg3 =
135133 Property ( " border:" ++ arg1. value ++ " " ++ arg2. value ++ " " ++ arg3. value)
136134
137135
136+ {- | -}
138137borderBottom : Length compatible units -> Property
139138borderBottom { value } =
140139 Property ( " border-bottom:" ++ value)
141140
142141
142+ {- | -}
143143borderBottom2 : Length compatible units -> Length compatible units -> Property
144144borderBottom2 arg1 arg2 =
145145 Property ( " border-bottom:" ++ arg1. value ++ " " ++ arg2. value)
146146
147147
148+ {- | -}
148149borderBottom3 : Length compatible units -> Length compatible units -> Length compatible units -> Property
149150borderBottom3 arg1 arg2 arg3 =
150151 Property ( " border-bottom:" ++ arg1. value ++ " " ++ arg2. value ++ " " ++ arg3. value)
0 commit comments