summaryrefslogtreecommitdiff |
diff options
author | nsensfel <SpamShield0@noot-noot.org> | 2019-04-29 18:11:15 +0200 |
---|---|---|
committer | nsensfel <SpamShield0@noot-noot.org> | 2019-04-29 18:11:15 +0200 |
commit | 6b6e1a9d6e1ed475d108a75a618d4a60544482e5 (patch) | |
tree | cd3a975483ec9748c1379a7488568c98c62be529 /src/roster-editor | |
parent | 6ca8f6fbb8083db156c906e848173e827de838ef (diff) |
Still a lot of work to be done with the CSS...
Diffstat (limited to 'src/roster-editor')
-rw-r--r-- | src/roster-editor/src/View/CharacterCard.elm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/roster-editor/src/View/CharacterCard.elm b/src/roster-editor/src/View/CharacterCard.elm index 5b1187f..7febc9f 100644 --- a/src/roster-editor/src/View/CharacterCard.elm +++ b/src/roster-editor/src/View/CharacterCard.elm @@ -17,6 +17,8 @@ import Battle.Struct.Omnimods import Battle.Struct.Statistics import Battle.View.Omnimods +import Battle.View.Statistic +import Battle.View.Attribute -- Battle Characters ----------------------------------------------------------- import BattleCharacters.Struct.Armor @@ -348,8 +350,7 @@ get_relevant_stats stats = (Struct.Event.TabSelected Struct.UI.GlyphManagementTab) ) ] - [ - ] + (Battle.View.Statistic.get_all_but_gauges_html stats) ) get_attributes : ( @@ -359,14 +360,13 @@ get_attributes : ( get_attributes atts = (Html.div [ - (Html.Attributes.class "character-card-stats"), + (Html.Attributes.class "character-card-atts"), (Html.Attributes.class "clickable"), (Html.Events.onClick (Struct.Event.TabSelected Struct.UI.GlyphManagementTab) ) ] - [ - ] + (Battle.View.Attribute.get_all_html atts) ) |