react 16 upgrade
[sdc.git] / openecomp-ui / resources / scss / components / _submitErrorResponse.scss
1 .submit-error-response-view {
2     max-height: 500px;
3     overflow: auto;
4     .list-group-item {
5         border-top: none;
6     }
7     .panel-title {
8         a {
9             &:after {
10                 content: '(details)';
11                 color: $link-blue;
12                 float: right;
13             }
14             &:hover {
15                 color: $blue;
16                 text-decoration: underline;
17             }
18         }
19     }
20     .error-block {
21         margin: 10px 0;
22         .error-block-header {
23             background-color: $tlv-gray;
24             padding: 5px;
25             cursor: pointer;
26             .svg-icon {
27                 &.__chevronDown {
28                     margin-right: 10px;
29                 }
30             }
31             .collapse-right {
32                 .svg-icon {
33                     &.__chevronDown {
34                         transform: rotate(270deg);
35                     }
36                 }
37             }
38         }
39         .error-code-list-item {
40             display: flex;
41             justify-content: flex-start;
42             .icon-label {
43                 @extend .body-1;
44                 color: $dark-gray;
45                 margin-left: 10px;
46             }
47             .icon-component {
48                 align-items: baseline;
49             }
50         }
51         .list-group-item {
52             .error-item-text {
53                 margin-top: -2px;
54                 max-width: 100px;
55             }
56         }
57         .component-name-header {
58             margin-left: 45px;
59             margin-top: 10px;
60             @extend .heading-5-semibold;
61         }
62     }
63 }