react 16 upgrade
[sdc.git] / openecomp-ui / resources / scss / modules / _vspComponentQuestionnaire.scss
1 .vsp-component-questionnaire-view {
2     input[type='checkbox'] {
3         &:before {
4             border: 1px solid $dark-gray;
5             cursor: pointer;
6         }
7         &:checked:before {
8             border: 1px solid $blue;
9         }
10     }
11     .component-questionnaire-validation-form {
12         .section-field {
13             textarea {
14                 height: 80px;
15             }
16         }
17
18         .rows-section,
19         .grid-items {
20             .row-flex-components {
21                 display: flex;
22             }
23
24             .vertical-flex {
25                 flex-direction: column;
26                 .control-label {
27                     @extend .body-2-semibold;
28                 }
29                 .radio-options-content-row {
30                     display: flex;
31                     margin-top: -4px;
32                     .validation-radio-wrapper {
33                         margin-right: 20px;
34
35                         & > .form-group {
36                             display: flex;
37                         }
38                         .form-group .sdc-radio {
39                             width: auto;
40                             margin-right: 0;
41                         }
42                     }
43                 }
44             }
45         }
46     }
47 }