aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/ng2/pages/interface-operation/operation-creator/param-row/param-row.component.less
blob: 81a1832c2173ba5fb5bc93fb2c2abe183c15e2b8 (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
@import '../../../../../../assets/styles/variables.less';

.remove {
    display: flex;
    align-items: center;
    justify-content: center;

    .delete-item-icon {
        &:hover {
            cursor: pointer;
        }
    }
}


.cell {
    min-height: 50px;
    padding: 10px;
    display: flex;
    align-items: center;

    > * {
        flex-basis: 100%;
    }

    /deep/ select {
        height: 30px;
    }

    input {
        height: 30px;
        padding-left: 10px;
    }

    &.field-property {
        &:last-child {
            flex: 1;
        }
    }
}