sccoreui 3.5.2 → 3.5.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/App.scss +307 -0
- package/dist/assets/flex.css +21618 -0
- package/dist/assets/sccoreicons.css +1105 -0
- package/dist/assets/sccoreui.css +8871 -0
- package/dist/assets/theme.css +6459 -0
- package/package.json +1 -1
- package/dist/assets/flex.min.css +0 -1
- package/dist/assets/sccoreicons.min.css +0 -1
- package/dist/assets/sccoreui.min.css +0 -1
- package/dist/assets/theme.min.css +0 -6
package/dist/App.scss
ADDED
|
@@ -0,0 +1,307 @@
|
|
|
1
|
+
@import url("./assets/theme.css");
|
|
2
|
+
@import url("./assets/sccoreui.css");
|
|
3
|
+
@import url("./assets/sccoreicons.css");
|
|
4
|
+
@import url("./assets/flex.css");
|
|
5
|
+
|
|
6
|
+
:root {
|
|
7
|
+
--fw-600: 600;
|
|
8
|
+
--fw-400: 400;
|
|
9
|
+
--fs-24: 24px;
|
|
10
|
+
--fs-18: 18px;
|
|
11
|
+
--fs-16: 16px;
|
|
12
|
+
--lh: 24px;
|
|
13
|
+
--fs-14: 14px;
|
|
14
|
+
--grey-bg: #101828;
|
|
15
|
+
--border-none: border-none;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
@font-face {
|
|
19
|
+
font-family: "Lato-400";
|
|
20
|
+
font-weight: 400;
|
|
21
|
+
src: url("./assets/fonts/Lato-Regular.ttf") format("truetype");
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
@font-face {
|
|
25
|
+
font-family: "Lato-600";
|
|
26
|
+
font-weight: 600;
|
|
27
|
+
src: url("./assets/fonts/Lato-Regular.ttf") format("truetype");
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
// * {
|
|
31
|
+
// padding: 0;
|
|
32
|
+
// margin: 0;
|
|
33
|
+
// }
|
|
34
|
+
|
|
35
|
+
body {
|
|
36
|
+
font-family: "Lato-400", sans-serif;
|
|
37
|
+
-webkit-font-smoothing: antialiased;
|
|
38
|
+
-moz-osx-font-smoothing: grayscale;
|
|
39
|
+
line-height: var(--lh);
|
|
40
|
+
padding: 0;
|
|
41
|
+
margin: 0;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
code {
|
|
45
|
+
font-family: "Lato-400", monospace;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
h1 {
|
|
49
|
+
font-size: var(--fs-24);
|
|
50
|
+
font-weight: var(--fw-600);
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
h2 {
|
|
54
|
+
font-size: var(--fs-18);
|
|
55
|
+
font-weight: var(--fw-600);
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
h3 {
|
|
59
|
+
font-size: var(--fs-16);
|
|
60
|
+
font-weight: var(--fw-400);
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
// ============= custom progress steps =============== //
|
|
64
|
+
|
|
65
|
+
.progress-container {
|
|
66
|
+
isolation: isolate;
|
|
67
|
+
|
|
68
|
+
&::before {
|
|
69
|
+
content: "";
|
|
70
|
+
background-color: var(--gray-200);
|
|
71
|
+
position: absolute;
|
|
72
|
+
z-index: -1;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
&.horizontal::before {
|
|
76
|
+
height: 2px;
|
|
77
|
+
width: 100%;
|
|
78
|
+
top: 11%;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
&.vertical::before {
|
|
82
|
+
height: 100%;
|
|
83
|
+
width: 2px;
|
|
84
|
+
left: 5%;
|
|
85
|
+
top: 0;
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.progressbar {
|
|
90
|
+
z-index: -1;
|
|
91
|
+
transition: all 0.6s ease;
|
|
92
|
+
|
|
93
|
+
&.horizontal {
|
|
94
|
+
left: 0;
|
|
95
|
+
height: 2px;
|
|
96
|
+
top: 11%;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
&.vertical {
|
|
100
|
+
width: 2px;
|
|
101
|
+
left: 5%;
|
|
102
|
+
top: 0;
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.progress-step-item {
|
|
107
|
+
&.horizontal {
|
|
108
|
+
// transform: translateX(10%);
|
|
109
|
+
|
|
110
|
+
&:nth-of-type(1) {
|
|
111
|
+
transform: translateX(-50%);
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
&:last-child {
|
|
115
|
+
transform: translateX(50%);
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
&.vertical {
|
|
120
|
+
transform: translateY(50%);
|
|
121
|
+
|
|
122
|
+
&:nth-of-type(1) {
|
|
123
|
+
transform: translateY(-5%);
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
&:last-child {
|
|
127
|
+
transform: translateY(100%);
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
// CUSTOM multiselect style started
|
|
133
|
+
.p-multiselect-panel {
|
|
134
|
+
.p-multiselect-header {
|
|
135
|
+
display: block;
|
|
136
|
+
padding: 8px 0;
|
|
137
|
+
|
|
138
|
+
.p-checkbox,
|
|
139
|
+
.p-multiselect-close {
|
|
140
|
+
display: none;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.p-multiselect-filter-container {
|
|
144
|
+
.p-inputtext {
|
|
145
|
+
padding-right: 12px;
|
|
146
|
+
padding-left: 1.75rem;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
.p-multiselect-filter-icon {
|
|
150
|
+
left: 0.55rem;
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
.p-multiselect-items-wrapper {
|
|
156
|
+
.p-multiselect-item.p-highlight {
|
|
157
|
+
&::after {
|
|
158
|
+
content: "";
|
|
159
|
+
width: 14px;
|
|
160
|
+
height: 6px;
|
|
161
|
+
border-left: 2px solid #132067;
|
|
162
|
+
border-bottom: 2px solid #132067;
|
|
163
|
+
transform: rotate(-45deg);
|
|
164
|
+
}
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
.sc_custom_multiselect {
|
|
170
|
+
// max-width: 197px;
|
|
171
|
+
margin: 0 4px;
|
|
172
|
+
width: max-content;
|
|
173
|
+
|
|
174
|
+
* {
|
|
175
|
+
color: #344054;
|
|
176
|
+
font-weight: 700;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
.left_section_item {
|
|
180
|
+
left: 1rem;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
.right_section_item {
|
|
184
|
+
right: 1rem;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
.selected_moreThan_one {
|
|
188
|
+
right: 44px;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
.p-inputwrapper-filled {
|
|
192
|
+
background: #F5F6FD;
|
|
193
|
+
border: 1px solid #8190E8;
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
.p-multiselect {
|
|
197
|
+
max-width: 100%;
|
|
198
|
+
width: max-content !important;
|
|
199
|
+
|
|
200
|
+
.p-multiselect-label {
|
|
201
|
+
padding: 0;
|
|
202
|
+
padding-left: 44px;
|
|
203
|
+
max-width: 100%;
|
|
204
|
+
|
|
205
|
+
.p-multiselect-token {
|
|
206
|
+
border: none;
|
|
207
|
+
width: max-content;
|
|
208
|
+
min-width: max-content;
|
|
209
|
+
background: none;
|
|
210
|
+
padding-left: 0;
|
|
211
|
+
|
|
212
|
+
.p-multiselect-token-label {
|
|
213
|
+
width: 100%;
|
|
214
|
+
white-space: nowrap;
|
|
215
|
+
overflow: hidden;
|
|
216
|
+
text-overflow: ellipsis;
|
|
217
|
+
}
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
svg {
|
|
221
|
+
display: none;
|
|
222
|
+
}
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
.p-multiselect-trigger {
|
|
227
|
+
width: 2rem;
|
|
228
|
+
|
|
229
|
+
svg {
|
|
230
|
+
display: none;
|
|
231
|
+
}
|
|
232
|
+
}
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
.status_dropdown {
|
|
236
|
+
.p-multiselect {
|
|
237
|
+
.p-multiselect-label {
|
|
238
|
+
padding-left: 34px;
|
|
239
|
+
}
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
.select_status_prv {
|
|
243
|
+
ul {
|
|
244
|
+
li {
|
|
245
|
+
width: 10px;
|
|
246
|
+
height: 10px;
|
|
247
|
+
border-radius: 8px;
|
|
248
|
+
position: absolute;
|
|
249
|
+
transform: translateY(-50%);
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
li.all {
|
|
253
|
+
background: #667085;
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
li.active {
|
|
257
|
+
background: #12B76A;
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
li.inactive {
|
|
261
|
+
background: #F04438;
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
li.draft {
|
|
265
|
+
background: #162578;
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
li:nth-child(2) {
|
|
269
|
+
left: 6px;
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
li:nth-child(3) {
|
|
273
|
+
left: 12px;
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
}
|
|
277
|
+
}
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
.selected_multile {
|
|
281
|
+
.p-multiselect-token-label {
|
|
282
|
+
padding-right: 18px;
|
|
283
|
+
}
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
.selected_multile.selected_num_2 {
|
|
287
|
+
.p-multiselect .p-multiselect-label {
|
|
288
|
+
padding-left: 40px;
|
|
289
|
+
}
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
.selected_multile.selected_num_3 {
|
|
293
|
+
.p-multiselect .p-multiselect-label {
|
|
294
|
+
padding-left: 44px;
|
|
295
|
+
}
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
.status_dropdown.selected_multile {
|
|
299
|
+
.left_section_item {
|
|
300
|
+
max-width: 28px;
|
|
301
|
+
overflow: hidden;
|
|
302
|
+
height: 11px;
|
|
303
|
+
width: -webkit-fill-available;
|
|
304
|
+
align-items: center;
|
|
305
|
+
display: flex;
|
|
306
|
+
}
|
|
307
|
+
}
|