summaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/ng2/pages/interface-operation/operation-creator/operation-creator.component.less
blob: 10976ef473e90e28f8f91da4b6738497444e77a5 (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
@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;

        &.association-options {
            margin-top: 5px;
        }

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

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

            .archive-warning {
                font-family: @font-opensans-bold;
                color: @main_color_i;
            }
        }
    }

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

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

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

    .generic-table {
        max-height: 233px;
        min-height: 91px;
        background: @main_color_p;

        .header-row .header-cell {
            &.remove {
                padding: 8px;
            }
            .info-icon {
                float: right;
            }
            /deep/ .tooltip-inner {
                max-width: 280px;
                font-size: 11px;
            }
        }

        .data-row {
            &.empty-msg {
                .bold-message {
                    font-family: @font-opensans-bold;
                }

                :first-child {
                    &:not(:only-child) {
                        margin: 6px 0;
                    }
                }

                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                padding: 14px;
            }
        }

        /deep/ .cell {
            &.field-name, &.field-type {
                flex: 1;
            }

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

            &.field-mandatory {
                flex: 0.5;
                text-align: center;
            }

            &.remove {
                min-width: 40px;
                max-width: 40px;
            }
        }

    }
}