aboutsummaryrefslogtreecommitdiffstats
path: root/openecomp-ui/resources/scss/components/_forms.scss
blob: 3c50fe694a601033d41f941eacc2f4847ac41a71 (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
.section-title {
  @extend .heading-3-medium;
  padding: 50px 0 30px 0;
  &:first-child {
    padding: 0 0 30px 0;
  }
}
.dropdown-multi-select {
  .Select {
    display: block;
    width: 100%;
    .Select-control {
      height: 28px;
      border-radius: 2px;
      .Select-input {
        height: 28px;
        input {
          height: 28px;
          padding: 0;
        }
      }
      .Select-placeholder {
        line-height: 30px;
      }
    }
    &.Select--multi {
      .Select-value {
        color: $text-black;
        background-color: transparent;
        border-color: $light-gray;
        margin-top: 2px;
        margin-left: 2px;
        border-radius: 1px;
      }
      .Select-value-icon {
        border-right-color: $light-gray;
      }
      .Select-arrow-zone {
        padding-top: 4px;
      }
    }
  }
}