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

.operation-creator {
    font-family: @font-opensans-regular;
    user-select: none;
    padding-top: 12px;
    padding-bottom: 20px;

    .i-sdc-form-label {
        font-size: 12px;
    }

    .w-sdc-form .i-sdc-form-item {
        margin-bottom: 15px;
    }

    .side-by-side {
        display: flex;

        .i-sdc-form-item {
            flex-basis: 100%;

            &:first-child {
                flex-basis: 40%;
                margin-right: 10px;
            }
        }
    }

    .input-param-title {
        font-size: 16px;
        text-transform: uppercase;
    }

    .separator-buttons {
        margin: 10px 0;
        display: flex;
        justify-content: space-between;

        .add-param-link {
            &:not(.disabled):hover {
                cursor: pointer;
            }
        }
    }

    .generic-table {
        max-height: 233px;

        .header-row .header-cell {
            &:last-child {
                padding: 0;
            }
        }

        .data-row {
            &.empty-msg {
                padding: 6px 14px;
            }
        }

        /deep/ .cell {
            &:last-child {
                min-width: 40px;
            }
        }

    }
}