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