Merge pull request #161 from NoRedInk/styles-v2

Add DEPRECATED.Nri.Ui.Styles.V2
This commit is contained in:
Richard Feldman 2018-11-07 19:20:15 -05:00 committed by GitHub
commit be8047e1de
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 50 additions and 0 deletions

View File

@ -7,6 +7,7 @@
"src"
],
"exposed-modules": [
"DEPRECATED.Nri.Ui.Styles.V2",
"Nri.Ui.Alert.V1",
"Nri.Ui.Alert.V2",
"Nri.Ui.AssetPath",

View File

@ -0,0 +1,49 @@
module DEPRECATED.Nri.Ui.Styles.V2 exposing (Keyframe, keyframes, toString)
{-| DEPRECATED. Once we are on elm-css 15.1.0 or later, we should use its
built-in keyframe functionality.
### Keyframe animations
@docs Keyframe, keyframes, toString
-}
{-| A CSS keyframe animation that will have vendor prefixes automatically added.
-}
type Keyframe
= CompiledKeyframe String
{-| Create a CSS keyframe animation with appropriate vendor prefixes
-}
keyframes : String -> List ( String, String ) -> Keyframe
keyframes name stops =
let
stop ( when, what ) =
when ++ " {" ++ what ++ "}"
x prefix =
"@"
++ prefix
++ "keyframes "
++ name
++ " {\n"
++ String.join "\n" (List.map stop stops)
++ "\n}\n"
in
[ "-webkit-", "-moz-", "" ]
|> List.map x
|> String.join ""
|> CompiledKeyframe
{-| Turn a [`Keyframe`](#Keyframe) into a string that can be included in a CSS stylesheet.
-}
toString : Keyframe -> String
toString keyframe =
case keyframe of
CompiledKeyframe compiled ->
compiled