summaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/ng2/components/properties-table/properties-table.component.less
blob: bb019a768b87f54d21725c1bbb43f027be99fce4 (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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
@import './../../../../assets/styles/variables.less';

:host /deep/ input { width:100%;}

.properties-table {
    display:flex;
    flex-direction:column;
    flex: 1;
    height:100%;
    text-align:left;

    .inner-cell-div{
        max-width: 100%;
        text-overflow: ellipsis;
        overflow: hidden;
        height: 20px;
    }
    
    .table-header, .table-row {
        display: flex;
        flex-direction:row;
        flex: 0 0 auto;
    }

    .table-header {
        font-weight:bold;
        border-top: #d2d2d2 solid 1px;
        background-color: #eaeaea;

        .valueCol {
            justify-content: flex-start;
            padding: 5px;
        }
    }

    .table-rows-header {
        font-size:16px;
        flex:1;
        border: #d2d2d2 solid 1px;
        border-top:none;
        padding: 5px;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
        background-color: @tlv_color_v;
    }

    .table-body {
        display:flex;
        flex-direction: column;
        overflow-y:auto;
        flex: 1;

        .no-data {
            border: #d2d2d2 solid 1px;
            border-top:none;
            text-align: center;
            height: 100%;
            padding: 20px;
        }
        /deep/.selected{
            background-color: #e6f6fb;
            color:  #009fdb;
        }
    }


    .table-row {
        &:hover {
             background-color:#f8f8f8; cursor:pointer;
        }

        &:last-child {
            flex: 1 0 auto;
        }
        .selected-row {
            background-color:#e6f6fb;
        }
    }
    .cut-inner-long-text{
        text-overflow: ellipsis;
        overflow: hidden;
    }
     .table-cell {
        font-size:13px;
        flex:1;
        border: #d2d2d2 solid 1px;
        border-right:none;
        border-top:none;
        padding: 5px;
        text-overflow: ellipsis;
        white-space: nowrap;
        display: flex;

        &:last-child {
            border-right:#d2d2d2 solid 1px;
        }
        &.col1 {
            flex: 0 0 300px;
            max-width:300px;
            display: flex;
            justify-content: space-between;

            .property-name {
                flex: 1;
                display: flex;
                max-width: 270px;
            }

            .property-description-icon {
                float: right;
                margin-top: 4px;
                margin-left: 5px;
                flex: 0 0 auto;
            }

            /deep/ .checkbox-container {
                margin-right: 5px;
            }
        }
        &.col2 {
            flex: 0 0 150px;
            max-width:150px;
        }

        &.col3 {
            flex:0 0 120px;
            max-width:120px;
        }

        &.valueCol {
            flex: 1;
            min-width: 350px;
            display: flex;
            justify-content: flex-end;
            padding: 0px;
        }
    }

    .filtered {
        /deep/ .checkbox-label-content{
            background-color: yellow;
        }
    }
    
    dynamic-property {
        width:100%;
    }

}