summaryrefslogtreecommitdiff
path: root/ui/app/components/list_editor/list_editor.less
diff options
context:
space:
mode:
authorelijah <elijah@riseup.net>2016-09-21 15:39:03 -0700
committerKali Kaneko (leap communications) <kali@leap.se>2016-09-22 11:40:14 -0400
commit7569ac8bd58174095f3f897548e26d0ba905236c (patch)
tree839c300d7dff62900bcc91672a3b55cf62c31f6c /ui/app/components/list_editor/list_editor.less
parent61b5734c12d6ab6733d3a832df8d99f1041bf355 (diff)
[feat] the setup wizard for the new ui
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 00000000..e2d2e55c
--- /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;
+ }
+}