aboutsummaryrefslogtreecommitdiffstats
path: root/openecomp-ui/resources/scss/components/_dualListBox.scss
blob: 543c1c8b92cda514392f251e6182beea115e5d71 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
.dual-list-box {
  display: flex;
  margin: 25px 0 10px 0;

  .dual-search-multi-select-section {
    $multi-select-box-width: 398px;
    width: $multi-select-box-width;
    .dual-text-box-search-title, .dual-list-box-multi-select-text {
      @extend .body-1;
      color: $dark-gray;
    }
    .dual-text-box-search {
      margin: 5px 0 30px 0;
    }
    .dual-list-box-multi-select {
      flex: 1 1;
      display: flex;
      height: 166px;
      margin-bottom: 0;
      select {
        width: 100%;
        margin: 0;
        padding: 0;
        overflow-y: scroll;
        height: inherit;
        option {
          padding: 4px 0 4px 10px;
        }
      }
    }
  }
  .dual-list-options-bar {
    margin: 62px 54px 27px 54px;
    padding-top: 23px;
    .dual-list-option {
      text-align: center;
      line-height: 10px;
      font-size: 25px;
      width: 20px;
      height: 15px;
      cursor: pointer;
      margin-top: 20px;
      color: $blue;
    }
  }
}