aboutsummaryrefslogtreecommitdiffstats
path: root/openecomp-ui/resources/scss/modules/_onboardingCatalog.scss
blob: bf0c14649e44d5e69e55572fe13a6ed54acc8a05 (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
$transitionLength: 0.6s;

.catalog-view {
    background-color: $background-gray;
    overflow: hidden;
    height: 100%;
    display: flex;
    @import 'onboardingCatalog/catalogFilter.scss';
    .catalog-parts {
        width: 100%;
        @import 'onboardingCatalog/onboardHeader';
        @import 'onboardingCatalog/catalogHeader';
    }
    @import 'onboardingCatalog/vendorPageHeader';
    @import 'onboardingCatalog/catalogList';
    @import 'onboardingCatalog/vspOverlay';
    .catalog-wrapper {
        height: 100%;
        overflow: auto;
        .tab-separator {
            content: '';
            height: 25px;
            border-right: 1px solid $dark-gray;
        }
        .catalog-list {
            overflow: hidden;
            height: auto;
            .sdc-tile {
                margin: 9px;
                .sdc-tile-header {
                    position: initial;
                    display: block;
                    flex-shrink: initial;
                    align-items: initial;
                    flex-direction: initial;
                }
                .sdc-tile-content {
                    position: initial;
                    flex: initial;
                    display: flex;
                    align-items: initial;
                    flex-direction: column;
                    justify-content: space-between;
                    overflow: initial;
                    .sdc-tile-info-line {
                        .with-overlay {
                            line-height: 1.2em;
                            @include ellipsis($width: initial, $max-width: 100%);
                        }
                    }
                }
                .sdc-tile-footer {
                    position: initial;
                    flex-shrink: initial;
                    display: flex;
                    align-items: center;
                    flex-direction: row;
                    text-transform: none;
                }
            }
        }
    }
}