summaryrefslogtreecommitdiff
path: root/ui/app/components/list_editor/list_editor.less
blob: e2d2e55c52e079fb46e2ef52fd14105908fae924 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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;
  }
}