aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/ng2/pages/composition/panel/panel-tabs/info-tab/info-tab.component.less
blob: c8da4e3e68c98e9da6501a4a51a28963821e3bc2 (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
@import '../../../../../../../assets/styles/variables';

.general-info-container {
    display: flex;
    flex-direction: column;
    padding: 10px 20px;
}

.component-details-panel-item {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-bottom: 5px;
    order:1;

    .name { font-family: OpenSans-Semibold, sans-serif; }
    .value { padding-left: 10px; }


    &.description {
        margin-top: 28px;
        white-space: normal;
        word-wrap: break-word;
        overflow: ellipsis;

        .value {
            padding-left: 0;
            max-width: none;
            font-weight: normal;
            font-family: @font-opensans-regular;
        }
    }

    &.group-item, &.policy-item {
        order:0;
    }
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    padding: 10px 20px;

    .i-sdc-designer-sidebar-section-content-item-tag {
        padding: 5px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        user-select: all;
    }
}