summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornsensfel <SpamShield0@noot-noot.org>2018-10-25 18:30:04 +0200
committernsensfel <SpamShield0@noot-noot.org>2018-10-25 18:30:04 +0200
commit343f1487285eee3167aaf07d8fadb26c8f0757c6 (patch)
tree98675a572f2c7aa079dc348700c10d1a41b95541
parent4b072c5c6eb67d4fc71434564c4351134e95737b (diff)
...
-rw-r--r--src/css/src/roster-editor/selection-window.scss19
-rw-r--r--src/roster-editor/src/ElmModule/Update.elm5
2 files changed, 18 insertions, 6 deletions
diff --git a/src/css/src/roster-editor/selection-window.scss b/src/css/src/roster-editor/selection-window.scss
index 57568e3..02d6249 100644
--- a/src/css/src/roster-editor/selection-window.scss
+++ b/src/css/src/roster-editor/selection-window.scss
@@ -17,6 +17,23 @@
border-left: none;
display: flex;
- flex-flow: column;
+ flex-flow: row;
+ flex-wrap: wrap;
justify-content: space-between;
}
+
+.selection-window-listing
+{
+ width: 100%;
+ height: calc(100% - 1em);
+ display: flex;
+ flex-flow: row wrap;
+ justify-content: space-between;
+ overflow-y: scroll;
+}
+
+.selection-window-listing > *
+{
+ width: 16em;
+ display: block;
+}
diff --git a/src/roster-editor/src/ElmModule/Update.elm b/src/roster-editor/src/ElmModule/Update.elm
index ee6f515..dce9852 100644
--- a/src/roster-editor/src/ElmModule/Update.elm
+++ b/src/roster-editor/src/ElmModule/Update.elm
@@ -3,13 +3,8 @@ module ElmModule.Update exposing (update)
-- Elm -------------------------------------------------------------------------
-- Roster Editor ---------------------------------------------------------------
-import Struct.Armor
import Struct.Event
-import Struct.Glyph
-import Struct.GlyphBoard
import Struct.Model
-import Struct.Portrait
-import Struct.Weapon
import Update.GoToMainMenu
import Update.HandleServerReply