Add new code new version
[sdc.git] / openecomp-ui / resources / scss / components / _forms.scss
1 .section-title {
2   @extend .heading-3-medium;
3   padding: 50px 0 30px 0;
4   &:first-child {
5     padding: 0 0 30px 0;
6   }
7 }
8 .dropdown-multi-select {
9   .Select {
10     display: block;
11     width: 100%;
12     .Select-control {
13       height: 28px;
14       border-radius: 2px;
15       .Select-input {
16         height: 28px;
17         input {
18           height: 28px;
19           padding: 0;
20         }
21       }
22       .Select-placeholder {
23         line-height: 30px;
24       }
25     }
26     &.Select--multi {
27       .Select-value {
28         color: $text-black;
29         background-color: transparent;
30         border-color: $light-gray;
31         margin-top: 2px;
32         margin-left: 2px;
33         border-radius: 1px;
34       }
35       .Select-value-icon {
36         border-right-color: $light-gray;
37       }
38       .Select-arrow-zone {
39         padding-top: 4px;
40       }
41     }
42   }
43 }
44
45