aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/view-models/workspace/tabs/general/general.less
blob: b9b59deb1b75ae2b93077636e4e74f16cdd3a9d6 (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
.sdc-workspace-general-step {
    display: flex;
    .w-sdc-form {
        padding: 0;
        flex-grow: 10;
        .i-sdc-form-file-upload{
            input[type="button"] {
                cursor: pointer;
                display: block;
                filter: alpha(opacity=0);
                width: 100px;
                height: 30px;
                opacity: 0;
                position: absolute;
                right: 0;
                text-align: right;
                top: 0;
            }

            .file-upload-browse-btn {
                .noselect;
                .bg_n;
                padding: 4px 6px;
                cursor: pointer;
                z-index: 999;
                width: 100px;
                height: 28px;
                text-align: center;

                &.disabled {
                    cursor: default;
                }
            }
        }

        .description{
            height: 360px;
        }

        .i-sdc-form-item.description-field{
            margin-bottom: 0;
        }

        .w-sdc-form-section-container {
            text-align: center;
        }

        .i-sdc-form-item {
            &.upload {
                margin-top: 0;
                width: auto;
                padding: 10px;
            }
            margin-bottom: 15px;
        }

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

        .template-desc {
            border: 1px dashed @border_color_f;
            height: 130px;
            overflow: hidden;
            padding: 10px 6px 6px 6px;
            margin-top: 10px;
        }

        .sdc-tag .tag {
            max-width: 225px;
        }

    }

    .w-sdc-form-column {
        position: relative;
    }

    .meta-data{
        padding: 8px 0 2px 20px;
        text-align: left;
        background-color: @tlv_color_t;
        position: absolute;
        bottom: 0;
        width: 100%;
        .meta-data-item-value{
            padding-bottom: 6px;
        }
    }

    .upper-general-fields{
        display: flex;
    }

    .selected-icon-container{
        flex-grow: 1;
        display: flex;
        align-items: center;
        .selected-icon-inner-container{
            height: 64px;
            width: 64px;
            margin: 0 auto;
        }
        .update-component-icon{
            position: relative;
            float: right;
            cursor: pointer;
        }
        .selected-icon{
            position: relative;
            top: -20px;
            z-index: -1;
            &.disable{
                position: inherit;
            }
        }
        &.show-only-on-over{
            .update-component-icon{
                display: none;
            }
            .selected-icon{
                position: inherit;
            }
            &:hover{
                .update-component-icon{
                    display: inline-block;
                }
                .selected-icon{
                    position: relative;
                }
            }
        }
    }

    .name-and-category-fields{
        flex-grow: 5;
    }




}