summaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/view-models/workspace/workspace.less
blob: b7331b5f9379bd3f477a60559c30ecacb192d6a0 (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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
@import '../../../assets/styles/variables.less';

.sdc-workspace-container {
    .bg_p;

    .add-btn {
        .f-color.a;
        .f-type._12_m;
        .hand;
        float: right;
        margin-bottom: 15px;

        &:before {
            .sprite-new;
            .plus-icon;
            margin-right: 5px;
            content: "";

        }
        &:hover {
            .f-color.b;
            &:before {
                .sprite-new;
                .plus-icon-hover;
            }
        }

    }
    .w-sdc-left-sidebar {
        padding: 0px;
        background-color: @tlv_color_t;
        box-shadow: none;
        z-index: 2;
        border-right: 1px solid @main_color_o;
        .menu-header{
            border-bottom: 1px solid @main_color_o;
            height: 53px;
            .f-type._16_m;
            font-weight: 700;
            line-height: 53px;
            padding-left: 40px;
            padding-right: 10px;
            width: 100%;
            overflow: hidden;
            text-overflow: ellipsis;
            display: inline-block;
            white-space: nowrap;
        }
        .i-sdc-designer-sidebar-section-content-item{
            .f-type._13_m;
            color: @main_color_m;
            margin-left: 20px;
            padding-left: 20px;
            margin-top: 20px;
            height: 17px;
            .hand;
            &:hover{
                color: @func_color_s;
                font-weight: 600;
            }
            &.selected{
                border-left: 4px solid @main_color_a;
                color: @main_color_a;
                margin-left: 18px;
                padding-left: 18px;
                font-weight: 600;

            }
        }
    }

    .sdc-asset-creation-info {
        .n_12_r;
        float: right;
        margin: 8px 20px 0 0;
    }

    .w-sdc-main-right-container {

        padding: 0px 0px 0px 0px;
        background-color: @main_color_p;
        z-index: 1;

        .sdc-workspace-top-bar {
            height: @action_nav_height;
            padding: 12px 10px 0px 50px;
            border-bottom: 1px solid @main_color_o;
            display: flex;
            justify-content: space-between;

            .version-container {

            }

            .progress-container {
                flex-grow: 4;
                z-index: 10000000;

                .general-view-top-progress {
                    width: 30%;
                    margin: 0 auto;
                    min-width: 200px;
                }
            }

            .not-latest {
                position: absolute;
                left: 24px;
                top: 20px;
                .sprite-new;
                .asdc-warning;
            }

            .sdc-workspace-top-bar-buttons {

                > button, > span:not(.delimiter) {
                    margin-right: 10px;
                    vertical-align: middle;
                    .hand;

                    &.sprite-new {
                        text-indent: 100%;
                    }
                    &.disabled, &:hover.disabled {
                        pointer-events: none;
                    }
                }
                .delimiter {
                    height: 32px;
                    width: 1px;
                    background-color: #959595;
                    display: inline-block;
                    vertical-align: middle;
                    margin-right: 20px;
                }

            }

            .lifecycle-state {
                padding: 7px 0 0 10px;
                margin: 2px 0 7px 10px;
                border-left: 1px solid @main_color_o;
                line-height: 15px;
                font-family: @font-opensans-bold;
                color: @main_color_m;
                font-size:12px;

                .lifecycle-state-icon {
                    .sprite-new;
                }
                .lifecycle-state-text {

                    font-weight: bold;
                    text-transform: uppercase;
                    vertical-align: top;
                    padding: 3px;
                }
            }

            .version-selector {
                // float:left;
                background-color: transparent;
                border: none;
                margin-top: 6px;
            }
        }
        .tab-title{
            height: 110px;
            padding-left: 100px;
            line-height: 110px;
            .f-type ._28;
        }
        .w-sdc-main-container-body-content {
            height:calc(~'100% - @{action_nav_height} - @{tab_title}');
            align-items: center;
            padding: 0 100px 20px 100px;
            &.third-party {
                text-align: left;
                padding: 0;
                position: absolute;
                top: @action_nav_height + @tab_title;
                left: 0;
                right: 0;
                bottom: 0;
            }
        }
    }
}