| summaryrefslogtreecommitdiff | 
diff options
Diffstat (limited to 'src/shared/battle/Battle/View/Attribute.elm')
| -rw-r--r-- | src/shared/battle/Battle/View/Attribute.elm | 40 | 
1 files changed, 14 insertions, 26 deletions
| diff --git a/src/shared/battle/Battle/View/Attribute.elm b/src/shared/battle/Battle/View/Attribute.elm index 9b2a8c7..80e75f1 100644 --- a/src/shared/battle/Battle/View/Attribute.elm +++ b/src/shared/battle/Battle/View/Attribute.elm @@ -50,24 +50,18 @@ get_html attribute value =                    then "omnimod-positive-value"                    else "omnimod-nil-value"              ) +         ), +         (Html.Attributes.class "omnimod-icon"), +         (Html.Attributes.class +            ( +               "omnimod-icon-" +               ++ (Battle.Struct.Attributes.encode_category attribute) +            )           )        ]        [           (Html.div              [ -               (Html.Attributes.class "omnimod-icon"), -               (Html.Attributes.class -                  ( -                     "omnimod-icon-" -                     ++ (Battle.Struct.Attributes.encode_category attribute) -                  ) -               ) -            ] -            [ -            ] -         ), -         (Html.div -            [                 (Html.Attributes.class "omnimod-value")              ]              [ @@ -100,24 +94,18 @@ get_signed_html attribute value =              (Struct.Event.RequestedHelp                 (Struct.HelpRequest.Attribute attribute)              ) +         ), +         (Html.Attributes.class "omnimod-icon"), +         (Html.Attributes.class +            ( +               "omnimod-icon-" +               ++ (Battle.Struct.Attributes.encode_category attribute) +            )           )        ]        [           (Html.div              [ -               (Html.Attributes.class "omnimod-icon"), -               (Html.Attributes.class -                  ( -                     "omnimod-icon-" -                     ++ (Battle.Struct.Attributes.encode_category attribute) -                  ) -               ) -            ] -            [ -            ] -         ), -         (Html.div -            [                 (Html.Attributes.class "omnimod-value")              ]              [ | 


