Merge "description styling bug fix"
[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       }
15       &:hover {
16         color: $blue;
17         text-decoration: underline;
18       }
19     }
20   }
21   .error-block {
22     margin: 10px 0;
23     .error-block-header {
24       background-color: $tlv-gray;
25       padding: 5px;
26       cursor: pointer;
27       .svg-icon {
28         &.__chevronDown {
29           margin-right: 10px;
30         }
31       }
32       .collapse-right {
33         .svg-icon {
34           &.__chevronDown {
35             transform: rotate(270deg);
36           }
37         }
38       }
39
40     }
41     .error-code-list-item {
42       display: flex;
43       justify-content: flex-start;
44       .icon-label {
45         @extend .body-1;
46         color: $dark-gray;
47         margin-left: 10px;
48       }
49       .icon-component {
50         align-items: baseline;
51       }
52     }
53     .list-group-item {
54       .error-item-text {
55         margin-top:-2px;
56         max-width: 100px;
57       }
58     }
59     .component-name-header {
60       margin-left: 45px;
61       margin-top: 10px;
62       @extend .heading-5-semibold;
63     }
64   }
65 }