aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/ng2/components/properties-table/dynamic-property/dynamic-property.component.less
blob: cb7cd396408565bf2119c81bbab53e97f88f55fd (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
.flat-children-container {
    dynamic-property:first-child .dynamic-property-row:not(.with-top-border) {
        border-top:none;
    }
    .dynamic-property-row {
        border-top: solid 1px #CCC;
    }
}
.dynamic-property-row {
    display:flex;
    flex-direction:row;
    align-items: center;
    
    .table-cell {
        flex: 1;
        padding:5px;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow:hidden;
        min-height:32px;

        &:first-child {
            flex: 0 0 50%;
            border-right:#d2d2d2 solid 1px;
            
        
            &:only-of-type {
                flex: 1 1 100%;
                border-right:none;
            }
        }

    }
    .property-icon {
        flex: 0 0 auto;
    }
    span.expand-icon {
        transition: 200ms transform ease-in-out;
    }
    span.expand-icon.expanded {
        transform: rotate(-180deg);
    }
}
.filtered {
    /deep/ .checkbox-label-content{
        background-color: yellow;
    }
}