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