summaryrefslogtreecommitdiff
path: root/ui/app/components/list_editor/list_editor.less
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/components/list_editor/list_editor.less')
-rw-r--r--ui/app/components/list_editor/list_editor.less29
1 files changed, 29 insertions, 0 deletions
diff --git a/ui/app/components/list_editor/list_editor.less b/ui/app/components/list_editor/list_editor.less
new file mode 100644
index 0000000..e2d2e55
--- /dev/null
+++ b/ui/app/components/list_editor/list_editor.less
@@ -0,0 +1,29 @@
+.list-editor {
+
+ display: -webkit-flex;
+ display: flex;
+
+ -webkit-flex-direction: column;
+ flex-direction: column;
+
+ -webkit-flex: 1 1 auto;
+ flex: 1 1 auto;
+
+ .list-select {
+ padding: 0px;
+ flex: 1 1 1000px;
+ -webkit-flex: 1 1 1000px;
+ overflow-y: scroll;
+ }
+
+ .list-option {
+ padding: 10px;
+ }
+
+ .list-toolbar {
+ padding-top: 10px;
+
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ }
+}