@natec/mef-dev-ui-kit 20.1.21 → 20.1.23
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/fesm2022/natec-mef-dev-ui-kit.mjs +46 -46
- package/fesm2022/natec-mef-dev-ui-kit.mjs.map +1 -1
- package/package.json +1 -1
- package/src/lib/styles/core.scss +34 -283
- package/src/lib/styles/icons.scss +191 -0
- package/src/lib/styles/pg/modules/_cards.scss +10 -11
- package/src/lib/styles/pg/modules/_select.scss +8 -2
- package/src/lib/styles/pg/modules/_sidebar.scss +0 -1
- package/src/lib/styles/pg/modules/_switch.scss +1 -2
- package/src/lib/styles/pg/modules/_tabs.scss +0 -1
- package/src/lib/styles/pg/modules/_tabs_accordian.scss +30 -40
- package/src/lib/styles/pg/modules/_typography.scss +75 -492
- package/src/lib/styles/vars.scss +25 -188
- package/src/lib/styles/pg/_color.scss +0 -688
- package/src/lib/styles/pg/_dropdown.scss +0 -38
- package/src/lib/styles/pg/_mixins.scss +0 -489
- package/src/lib/styles/pg/_responsive.scss +0 -1100
- package/src/lib/styles/pg/modules/_header.scss +0 -261
- package/src/lib/styles/pg/modules/_layout.scss +0 -184
- package/src/lib/styles/pg/modules/_misc.scss +0 -702
- package/src/lib/styles/pg/vendor/ngx-google-map.scss +0 -18
- package/src/lib/styles/pg/vendor/typehead.scss +0 -31
package/package.json
CHANGED
package/src/lib/styles/core.scss
CHANGED
|
@@ -2,298 +2,49 @@
|
|
|
2
2
|
@use 'fonts.scss' as *;
|
|
3
3
|
@use 'icons.scss' as *;
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
@use 'pg/toaster.scss' as *;
|
|
7
|
-
@use 'pg/_color.scss' as *;
|
|
8
|
-
@use 'pg/_mixins.scss' as *;
|
|
9
|
-
|
|
5
|
+
// Deprecated styles, to be removed in future releases
|
|
10
6
|
@use 'pg/modules/_tabs_accordian.scss' as *;
|
|
11
7
|
@use 'pg/modules/_tabs.scss' as *;
|
|
12
8
|
@use 'pg/modules/_switch.scss' as *;
|
|
13
9
|
@use 'pg/modules/_select.scss' as *;
|
|
14
|
-
@use 'pg/modules/
|
|
10
|
+
@use 'pg/modules/_cards.scss' as *;
|
|
11
|
+
|
|
12
|
+
// Elements styles for refactoring, possible be removed in future releases
|
|
15
13
|
@use 'pg/modules/_sidebar.scss' as *;
|
|
16
|
-
@use 'pg/modules/
|
|
14
|
+
@use 'pg/modules/_breadcrumb.scss' as *;
|
|
17
15
|
|
|
18
|
-
//
|
|
16
|
+
// Core styles for refactoring
|
|
19
17
|
@use 'pg/modules/_typography.scss' as *;
|
|
20
|
-
@use 'pg/modules/_breadcrumb.scss' as *;
|
|
21
18
|
@use 'pg/modules/_buttons.scss' as *;
|
|
22
|
-
//Cards
|
|
23
|
-
@use 'pg/modules/_cards.scss' as *;
|
|
24
|
-
|
|
25
|
-
//Form Elements
|
|
26
19
|
@use 'pg/modules/_form_elements.scss' as *;
|
|
27
|
-
|
|
28
|
-
//Misc
|
|
29
|
-
@use 'pg/modules/_misc.scss' as *;
|
|
30
|
-
@use 'pg/_responsive.scss' as *;
|
|
31
|
-
|
|
32
|
-
//Vendor
|
|
33
|
-
@use 'pg/vendor/typehead.scss' as *;
|
|
34
|
-
@use 'pg/vendor/md-datatable.scss' as *; // New Material Design theme
|
|
20
|
+
@use 'pg/vendor/md-datatable.scss' as *; // to be removed in future releases
|
|
35
21
|
@use 'pg/vendor/md-grid.scss' as *;
|
|
36
|
-
@use 'pg/
|
|
37
|
-
|
|
38
|
-
[class^='icon-'],
|
|
39
|
-
[class*=' icon-'] {
|
|
40
|
-
/* use !important to prevent issues with browser extensions that change ../fonts */
|
|
41
|
-
font-family: 'icomoon' !important;
|
|
42
|
-
font-style: normal;
|
|
43
|
-
font-weight: normal;
|
|
44
|
-
font-variant: normal;
|
|
45
|
-
text-transform: none;
|
|
46
|
-
line-height: 1;
|
|
47
|
-
|
|
48
|
-
/* Better Font Rendering =========== */
|
|
49
|
-
-webkit-font-smoothing: antialiased;
|
|
50
|
-
-moz-osx-font-smoothing: grayscale;
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
.icon-info-light:before {
|
|
54
|
-
content: '\e90d';
|
|
55
|
-
}
|
|
56
|
-
.icon-connector:before {
|
|
57
|
-
content: '\e90e';
|
|
58
|
-
}
|
|
59
|
-
.icon-information:before {
|
|
60
|
-
content: '\e90f';
|
|
61
|
-
}
|
|
62
|
-
.icon-plugin:before {
|
|
63
|
-
content: '\e910';
|
|
64
|
-
}
|
|
65
|
-
.icon-check-connector:before {
|
|
66
|
-
content: '\e911';
|
|
67
|
-
}
|
|
68
|
-
.icon-computer:before {
|
|
69
|
-
content: '\e913';
|
|
70
|
-
}
|
|
71
|
-
.icon-trash-light:before {
|
|
72
|
-
content: '\e915';
|
|
73
|
-
}
|
|
74
|
-
.icon-ok:before {
|
|
75
|
-
content: '\e917';
|
|
76
|
-
color: #28b446;
|
|
77
|
-
}
|
|
78
|
-
.icon-calendar:before {
|
|
79
|
-
content: '\e919';
|
|
80
|
-
}
|
|
81
|
-
.icon-guard:before {
|
|
82
|
-
content: '\e91f';
|
|
83
|
-
}
|
|
84
|
-
.icon-tenant:before {
|
|
85
|
-
content: '\e922';
|
|
86
|
-
}
|
|
87
|
-
.icon-nok:before {
|
|
88
|
-
content: '\e923';
|
|
89
|
-
}
|
|
90
|
-
.icon-lock .path1:before {
|
|
91
|
-
content: '\e924';
|
|
92
|
-
color: rgb(234, 234, 234);
|
|
93
|
-
}
|
|
94
|
-
.icon-lock .path2:before {
|
|
95
|
-
content: '\e925';
|
|
96
|
-
margin-left: -1.158203125em;
|
|
97
|
-
color: rgb(55, 55, 55);
|
|
98
|
-
}
|
|
99
|
-
.icon-unlock .path1:before {
|
|
100
|
-
content: '\e926';
|
|
101
|
-
}
|
|
102
|
-
.icon-unlock .path2:before {
|
|
103
|
-
content: '\e927';
|
|
104
|
-
margin-left: -1.2109375em;
|
|
105
|
-
}
|
|
106
|
-
.icon-logout:before {
|
|
107
|
-
content: '\e90b';
|
|
108
|
-
}
|
|
109
|
-
.icon-unchecked:before {
|
|
110
|
-
content: '\e90a';
|
|
111
|
-
}
|
|
112
|
-
.icon-notification .path1:before {
|
|
113
|
-
content: '\e902';
|
|
114
|
-
}
|
|
115
|
-
.icon-notification .path2:before {
|
|
116
|
-
content: '\e903';
|
|
117
|
-
margin-left: -1em;
|
|
118
|
-
}
|
|
119
|
-
.icon-notification .path3:before {
|
|
120
|
-
content: '\e904';
|
|
121
|
-
margin-left: -1em;
|
|
122
|
-
}
|
|
123
|
-
.icon-notification .path4:before {
|
|
124
|
-
content: '\e905';
|
|
125
|
-
margin-left: -1em;
|
|
126
|
-
}
|
|
127
|
-
.icon-setings .path1:before {
|
|
128
|
-
content: '\e908';
|
|
129
|
-
}
|
|
130
|
-
.icon-setings .path2:before {
|
|
131
|
-
content: '\e909';
|
|
132
|
-
margin-left: -1em;
|
|
133
|
-
}
|
|
134
|
-
.icon-person:before {
|
|
135
|
-
content: '\e90c';
|
|
136
|
-
}
|
|
137
|
-
.icon-persons:before {
|
|
138
|
-
content: '\e912';
|
|
139
|
-
}
|
|
140
|
-
.icon-configuration:before {
|
|
141
|
-
content: '\e914';
|
|
142
|
-
}
|
|
143
|
-
.icon-support:before {
|
|
144
|
-
content: '\e916';
|
|
145
|
-
}
|
|
146
|
-
.icon-log:before {
|
|
147
|
-
content: '\e918';
|
|
148
|
-
}
|
|
149
|
-
.icon-msg_popup:before {
|
|
150
|
-
content: '\e91a';
|
|
151
|
-
}
|
|
152
|
-
.icon-protect:before {
|
|
153
|
-
content: '\e91b';
|
|
154
|
-
}
|
|
155
|
-
.icon-keys:before {
|
|
156
|
-
content: '\e91c';
|
|
157
|
-
}
|
|
158
|
-
.icon-info:before {
|
|
159
|
-
content: '\e91d';
|
|
160
|
-
}
|
|
161
|
-
.icon-tenats:before {
|
|
162
|
-
content: '\e91e';
|
|
163
|
-
}
|
|
164
|
-
.icon-profile:before {
|
|
165
|
-
content: '\e921';
|
|
166
|
-
}
|
|
167
|
-
.icon-msg:before {
|
|
168
|
-
content: '\e928';
|
|
169
|
-
}
|
|
170
|
-
.icon-arrow:before {
|
|
171
|
-
content: '\e929';
|
|
172
|
-
}
|
|
173
|
-
.icon-warning:before {
|
|
174
|
-
content: '\e92a';
|
|
175
|
-
}
|
|
176
|
-
.icon-messages:before {
|
|
177
|
-
content: '\e92b';
|
|
178
|
-
}
|
|
179
|
-
.icon-pause:before {
|
|
180
|
-
content: '\e92c';
|
|
181
|
-
}
|
|
182
|
-
.icon-play:before {
|
|
183
|
-
content: '\e92e';
|
|
184
|
-
}
|
|
185
|
-
.icon-store:before {
|
|
186
|
-
content: '\e930';
|
|
187
|
-
}
|
|
188
|
-
.icon-trash:before {
|
|
189
|
-
content: '\e931';
|
|
190
|
-
}
|
|
191
|
-
.icon-edit:before {
|
|
192
|
-
content: '\e932';
|
|
193
|
-
}
|
|
194
|
-
.icon-checked:before {
|
|
195
|
-
content: '\e933';
|
|
196
|
-
}
|
|
197
|
-
.icon-bell .path1:before {
|
|
198
|
-
content: '\e936';
|
|
199
|
-
}
|
|
200
|
-
.icon-bell .path2:before {
|
|
201
|
-
content: '\e937';
|
|
202
|
-
margin-left: -0.9658203125em;
|
|
203
|
-
}
|
|
204
|
-
.icon-bell .path3:before {
|
|
205
|
-
content: '\e938';
|
|
206
|
-
margin-left: -0.9658203125em;
|
|
207
|
-
}
|
|
208
|
-
|
|
209
|
-
.icon-copy:before {
|
|
210
|
-
content: "\e901";
|
|
211
|
-
}
|
|
212
|
-
|
|
213
|
-
.icon-code:before {
|
|
214
|
-
content: '\e900';
|
|
215
|
-
}
|
|
216
|
-
|
|
217
|
-
.icon-code:before {
|
|
218
|
-
content: '\e900';
|
|
219
|
-
}
|
|
220
|
-
|
|
221
|
-
.icon-arrow-dropdown::before {
|
|
222
|
-
content: '\e906';
|
|
223
|
-
}
|
|
224
|
-
|
|
225
|
-
/*#endregion img-font*/
|
|
226
|
-
|
|
227
|
-
.color-black {
|
|
228
|
-
color: $Black-Color !important;
|
|
229
|
-
}
|
|
230
|
-
|
|
231
|
-
.color-Dark-Gray-1 {
|
|
232
|
-
color: $Dark-Gray-1 !important;
|
|
233
|
-
}
|
|
22
|
+
@use 'pg/toaster.scss' as *;
|
|
234
23
|
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
}
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
}
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
}
|
|
247
|
-
.color-Light-Gray-2 {
|
|
248
|
-
color: $Light-Gray-2 !important;
|
|
249
|
-
}
|
|
250
|
-
.color-Light-Gray-3 {
|
|
251
|
-
color: $Light-Gray-3 !important;
|
|
252
|
-
}
|
|
253
|
-
.color-White {
|
|
254
|
-
color: $White !important;
|
|
255
|
-
}
|
|
256
|
-
.color-Link {
|
|
257
|
-
color: $Link !important;
|
|
258
|
-
}
|
|
259
|
-
.color-dark-link {
|
|
260
|
-
color: $Link-on-dark !important;
|
|
261
|
-
}
|
|
24
|
+
// Bootstrap CSS custom properties override
|
|
25
|
+
:root {
|
|
26
|
+
// Colors
|
|
27
|
+
--bs-primary: #{$Link};
|
|
28
|
+
--bs-secondary: #{$Light-Gray-1};
|
|
29
|
+
--bs-success: #{$Green};
|
|
30
|
+
--bs-danger: #{$Red};
|
|
31
|
+
--bs-warning: #{$Yellow};
|
|
32
|
+
--bs-info: #{$Link-on-dark};
|
|
33
|
+
--bs-light: #{$Light-Gray-3};
|
|
34
|
+
--bs-dark: #{$Black-Color};
|
|
262
35
|
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
}
|
|
36
|
+
// Typography
|
|
37
|
+
--bs-body-font-family: #{$font-body};
|
|
38
|
+
--bs-body-color: #{$Black-Color};
|
|
39
|
+
--bs-body-bg: #{$White};
|
|
266
40
|
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
}
|
|
41
|
+
// Links
|
|
42
|
+
--bs-link-color: #{$Link};
|
|
43
|
+
--bs-link-hover-color: #{$Red};
|
|
270
44
|
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
}
|
|
274
|
-
.b-color-Red {
|
|
275
|
-
background-color: $Red !important;
|
|
276
|
-
}
|
|
277
|
-
.b-color-Green {
|
|
278
|
-
background-color: $Green !important;
|
|
279
|
-
}
|
|
280
|
-
.b-color-Light-Gray-1 {
|
|
281
|
-
background-color: $Light-Gray-1 !important;
|
|
282
|
-
}
|
|
283
|
-
.b-color-Light-Gray-2 {
|
|
284
|
-
background-color: $Light-Gray-2 !important;
|
|
285
|
-
}
|
|
286
|
-
.b-color-Light-Gray-3 {
|
|
287
|
-
background-color: $Light-Gray-3 !important;
|
|
288
|
-
}
|
|
289
|
-
.b-color-White {
|
|
290
|
-
background-color: $White !important;
|
|
291
|
-
}
|
|
292
|
-
.b-color-Link {
|
|
293
|
-
background-color: $Link !important;
|
|
294
|
-
}
|
|
295
|
-
.b-color-dark-link {
|
|
296
|
-
background-color: $Link-on-dark !important;
|
|
45
|
+
// Borders
|
|
46
|
+
--bs-border-color: #{$Light-Gray-2};
|
|
47
|
+
--bs-border-radius: #{$default-border-size};
|
|
297
48
|
}
|
|
298
49
|
|
|
299
50
|
.ql-container {
|
|
@@ -307,18 +58,18 @@ a:hover * {
|
|
|
307
58
|
.ql-toolbar.ql-snow {
|
|
308
59
|
border-top-left-radius: 5px;
|
|
309
60
|
border-top-right-radius: 5px;
|
|
310
|
-
border-color:
|
|
311
|
-
background:
|
|
61
|
+
border-color: $Light-Gray-3;
|
|
62
|
+
background: $White;
|
|
312
63
|
}
|
|
313
64
|
|
|
314
65
|
.ql-toolbar.ql-snow + .ql-container.ql-snow {
|
|
315
66
|
border-bottom-left-radius: 5px;
|
|
316
67
|
border-bottom-right-radius: 5px;
|
|
317
|
-
background-color:
|
|
318
|
-
border-color:
|
|
68
|
+
background-color: $White;
|
|
69
|
+
border-color: $Light-Gray-3;
|
|
319
70
|
}
|
|
320
71
|
|
|
321
72
|
.badge {
|
|
322
73
|
--bs-badge-padding-x: 1.0em;
|
|
323
74
|
--bs-badge-padding-y: 0.5em;
|
|
324
|
-
}
|
|
75
|
+
}
|
|
@@ -329,3 +329,194 @@ Pages Icons
|
|
|
329
329
|
.pg-video:before {
|
|
330
330
|
content: "\e654";
|
|
331
331
|
}
|
|
332
|
+
|
|
333
|
+
/// ....
|
|
334
|
+
|
|
335
|
+
|
|
336
|
+
[class^='icon-'],
|
|
337
|
+
[class*=' icon-'] {
|
|
338
|
+
/* use !important to prevent issues with browser extensions that change ../fonts */
|
|
339
|
+
font-family: 'icomoon' !important;
|
|
340
|
+
font-style: normal;
|
|
341
|
+
font-weight: normal;
|
|
342
|
+
font-variant: normal;
|
|
343
|
+
text-transform: none;
|
|
344
|
+
line-height: 1;
|
|
345
|
+
|
|
346
|
+
/* Better Font Rendering =========== */
|
|
347
|
+
-webkit-font-smoothing: antialiased;
|
|
348
|
+
-moz-osx-font-smoothing: grayscale;
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
.icon-info-light:before {
|
|
352
|
+
content: '\e90d';
|
|
353
|
+
}
|
|
354
|
+
.icon-connector:before {
|
|
355
|
+
content: '\e90e';
|
|
356
|
+
}
|
|
357
|
+
.icon-information:before {
|
|
358
|
+
content: '\e90f';
|
|
359
|
+
}
|
|
360
|
+
.icon-plugin:before {
|
|
361
|
+
content: '\e910';
|
|
362
|
+
}
|
|
363
|
+
.icon-check-connector:before {
|
|
364
|
+
content: '\e911';
|
|
365
|
+
}
|
|
366
|
+
.icon-computer:before {
|
|
367
|
+
content: '\e913';
|
|
368
|
+
}
|
|
369
|
+
.icon-trash-light:before {
|
|
370
|
+
content: '\e915';
|
|
371
|
+
}
|
|
372
|
+
.icon-ok:before {
|
|
373
|
+
content: '\e917';
|
|
374
|
+
color: #28b446;
|
|
375
|
+
}
|
|
376
|
+
.icon-calendar:before {
|
|
377
|
+
content: '\e919';
|
|
378
|
+
}
|
|
379
|
+
.icon-guard:before {
|
|
380
|
+
content: '\e91f';
|
|
381
|
+
}
|
|
382
|
+
.icon-tenant:before {
|
|
383
|
+
content: '\e922';
|
|
384
|
+
}
|
|
385
|
+
.icon-nok:before {
|
|
386
|
+
content: '\e923';
|
|
387
|
+
}
|
|
388
|
+
.icon-lock .path1:before {
|
|
389
|
+
content: '\e924';
|
|
390
|
+
color: rgb(234, 234, 234);
|
|
391
|
+
}
|
|
392
|
+
.icon-lock .path2:before {
|
|
393
|
+
content: '\e925';
|
|
394
|
+
margin-left: -1.158203125em;
|
|
395
|
+
color: rgb(55, 55, 55);
|
|
396
|
+
}
|
|
397
|
+
.icon-unlock .path1:before {
|
|
398
|
+
content: '\e926';
|
|
399
|
+
}
|
|
400
|
+
.icon-unlock .path2:before {
|
|
401
|
+
content: '\e927';
|
|
402
|
+
margin-left: -1.2109375em;
|
|
403
|
+
}
|
|
404
|
+
.icon-logout:before {
|
|
405
|
+
content: '\e90b';
|
|
406
|
+
}
|
|
407
|
+
.icon-unchecked:before {
|
|
408
|
+
content: '\e90a';
|
|
409
|
+
}
|
|
410
|
+
.icon-notification .path1:before {
|
|
411
|
+
content: '\e902';
|
|
412
|
+
}
|
|
413
|
+
.icon-notification .path2:before {
|
|
414
|
+
content: '\e903';
|
|
415
|
+
margin-left: -1em;
|
|
416
|
+
}
|
|
417
|
+
.icon-notification .path3:before {
|
|
418
|
+
content: '\e904';
|
|
419
|
+
margin-left: -1em;
|
|
420
|
+
}
|
|
421
|
+
.icon-notification .path4:before {
|
|
422
|
+
content: '\e905';
|
|
423
|
+
margin-left: -1em;
|
|
424
|
+
}
|
|
425
|
+
.icon-setings .path1:before {
|
|
426
|
+
content: '\e908';
|
|
427
|
+
}
|
|
428
|
+
.icon-setings .path2:before {
|
|
429
|
+
content: '\e909';
|
|
430
|
+
margin-left: -1em;
|
|
431
|
+
}
|
|
432
|
+
.icon-person:before {
|
|
433
|
+
content: '\e90c';
|
|
434
|
+
}
|
|
435
|
+
.icon-persons:before {
|
|
436
|
+
content: '\e912';
|
|
437
|
+
}
|
|
438
|
+
.icon-configuration:before {
|
|
439
|
+
content: '\e914';
|
|
440
|
+
}
|
|
441
|
+
.icon-support:before {
|
|
442
|
+
content: '\e916';
|
|
443
|
+
}
|
|
444
|
+
.icon-log:before {
|
|
445
|
+
content: '\e918';
|
|
446
|
+
}
|
|
447
|
+
.icon-msg_popup:before {
|
|
448
|
+
content: '\e91a';
|
|
449
|
+
}
|
|
450
|
+
.icon-protect:before {
|
|
451
|
+
content: '\e91b';
|
|
452
|
+
}
|
|
453
|
+
.icon-keys:before {
|
|
454
|
+
content: '\e91c';
|
|
455
|
+
}
|
|
456
|
+
.icon-info:before {
|
|
457
|
+
content: '\e91d';
|
|
458
|
+
}
|
|
459
|
+
.icon-tenats:before {
|
|
460
|
+
content: '\e91e';
|
|
461
|
+
}
|
|
462
|
+
.icon-profile:before {
|
|
463
|
+
content: '\e921';
|
|
464
|
+
}
|
|
465
|
+
.icon-msg:before {
|
|
466
|
+
content: '\e928';
|
|
467
|
+
}
|
|
468
|
+
.icon-arrow:before {
|
|
469
|
+
content: '\e929';
|
|
470
|
+
}
|
|
471
|
+
.icon-warning:before {
|
|
472
|
+
content: '\e92a';
|
|
473
|
+
}
|
|
474
|
+
.icon-messages:before {
|
|
475
|
+
content: '\e92b';
|
|
476
|
+
}
|
|
477
|
+
.icon-pause:before {
|
|
478
|
+
content: '\e92c';
|
|
479
|
+
}
|
|
480
|
+
.icon-play:before {
|
|
481
|
+
content: '\e92e';
|
|
482
|
+
}
|
|
483
|
+
.icon-store:before {
|
|
484
|
+
content: '\e930';
|
|
485
|
+
}
|
|
486
|
+
.icon-trash:before {
|
|
487
|
+
content: '\e931';
|
|
488
|
+
}
|
|
489
|
+
.icon-edit:before {
|
|
490
|
+
content: '\e932';
|
|
491
|
+
}
|
|
492
|
+
.icon-checked:before {
|
|
493
|
+
content: '\e933';
|
|
494
|
+
}
|
|
495
|
+
.icon-bell .path1:before {
|
|
496
|
+
content: '\e936';
|
|
497
|
+
}
|
|
498
|
+
.icon-bell .path2:before {
|
|
499
|
+
content: '\e937';
|
|
500
|
+
margin-left: -0.9658203125em;
|
|
501
|
+
}
|
|
502
|
+
.icon-bell .path3:before {
|
|
503
|
+
content: '\e938';
|
|
504
|
+
margin-left: -0.9658203125em;
|
|
505
|
+
}
|
|
506
|
+
|
|
507
|
+
.icon-copy:before {
|
|
508
|
+
content: "\e901";
|
|
509
|
+
}
|
|
510
|
+
|
|
511
|
+
.icon-code:before {
|
|
512
|
+
content: '\e900';
|
|
513
|
+
}
|
|
514
|
+
|
|
515
|
+
.icon-code:before {
|
|
516
|
+
content: '\e900';
|
|
517
|
+
}
|
|
518
|
+
|
|
519
|
+
.icon-arrow-dropdown::before {
|
|
520
|
+
content: '\e906';
|
|
521
|
+
}
|
|
522
|
+
|
|
@@ -3,13 +3,12 @@
|
|
|
3
3
|
$assets-url: "../../assets" ;
|
|
4
4
|
*/
|
|
5
5
|
@use '../../vars.scss' as *;
|
|
6
|
-
@use '../_mixins.scss' as mix;
|
|
7
6
|
@use 'sass:color' as color;
|
|
8
7
|
|
|
9
8
|
.card {
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
9
|
+
box-shadow: none;
|
|
10
|
+
border-radius: 1px;
|
|
11
|
+
transition: all 0.2s ease;
|
|
13
12
|
position: relative;
|
|
14
13
|
margin-bottom: 20px;
|
|
15
14
|
width: 100%;
|
|
@@ -47,7 +46,7 @@ $assets-url: "../../assets" ;
|
|
|
47
46
|
text-overflow: ellipsis;
|
|
48
47
|
-webkit-text-stroke: 0px;
|
|
49
48
|
filter: alpha(opacity=40);
|
|
50
|
-
|
|
49
|
+
transition: opacity 0.3s ease;
|
|
51
50
|
}
|
|
52
51
|
.card-controls {
|
|
53
52
|
float: right;
|
|
@@ -116,7 +115,7 @@ $assets-url: "../../assets" ;
|
|
|
116
115
|
&.card-transparent {
|
|
117
116
|
background: transparent;
|
|
118
117
|
border: none;
|
|
119
|
-
|
|
118
|
+
box-shadow: none;
|
|
120
119
|
.card-body {
|
|
121
120
|
background: transparent;
|
|
122
121
|
}
|
|
@@ -130,7 +129,7 @@ $assets-url: "../../assets" ;
|
|
|
130
129
|
}
|
|
131
130
|
}
|
|
132
131
|
&.card-featured {
|
|
133
|
-
|
|
132
|
+
box-shadow: -1px 1px 3px 0px rgba(121, 129, 135, 0.14);
|
|
134
133
|
width: calc(100% - 50px);
|
|
135
134
|
float: right;
|
|
136
135
|
.card-title {
|
|
@@ -176,7 +175,7 @@ $assets-url: "../../assets" ;
|
|
|
176
175
|
height: 38px;
|
|
177
176
|
margin-left: -39px;
|
|
178
177
|
float: left;
|
|
179
|
-
|
|
178
|
+
box-shadow: inset -3px 0px 3px 0px rgba(0, 0, 0, 0.14);
|
|
180
179
|
&.green {
|
|
181
180
|
background: $color-complete;
|
|
182
181
|
}
|
|
@@ -275,7 +274,7 @@ $assets-url: "../../assets" ;
|
|
|
275
274
|
padding-top: 10px;
|
|
276
275
|
padding-bottom: 10px;
|
|
277
276
|
&.card-refresh {
|
|
278
|
-
|
|
277
|
+
transition: opacity 0.3s ease;
|
|
279
278
|
&.refreshing {
|
|
280
279
|
opacity: 1;
|
|
281
280
|
}
|
|
@@ -333,7 +332,7 @@ $assets-url: "../../assets" ;
|
|
|
333
332
|
height: 15px;
|
|
334
333
|
display: block;
|
|
335
334
|
background-size: cover;
|
|
336
|
-
|
|
335
|
+
transition: opacity 0.3s ease;
|
|
337
336
|
&.fade {
|
|
338
337
|
opacity: 0.1;
|
|
339
338
|
}
|
|
@@ -347,7 +346,7 @@ $assets-url: "../../assets" ;
|
|
|
347
346
|
display: block;
|
|
348
347
|
background-size: cover;
|
|
349
348
|
opacity: 0;
|
|
350
|
-
|
|
349
|
+
transition: opacity 0.3s ease;
|
|
351
350
|
&.active {
|
|
352
351
|
opacity: 1;
|
|
353
352
|
}
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
@use '../../vars.scss' as *;
|
|
2
|
-
@use '../_mixins.scss' as mix;
|
|
3
2
|
@use "sass:color" as color;
|
|
4
3
|
|
|
5
4
|
$select-prefix-cls: "pg-select";
|
|
@@ -291,7 +290,14 @@ $background-color-base:$color-master-lighter;
|
|
|
291
290
|
min-height: $input-height-base;
|
|
292
291
|
cursor: text;
|
|
293
292
|
padding-bottom: 3px;
|
|
294
|
-
|
|
293
|
+
&:before,
|
|
294
|
+
&:after {
|
|
295
|
+
content: " ";
|
|
296
|
+
display: table;
|
|
297
|
+
}
|
|
298
|
+
&:after {
|
|
299
|
+
clear: both;
|
|
300
|
+
}
|
|
295
301
|
.pg-select-selection__placeholder{
|
|
296
302
|
left: 6px;
|
|
297
303
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
@use "sass:color";
|
|
2
2
|
@use '../../vars.scss' as *;
|
|
3
|
-
@use '../_mixins.scss' as mix;
|
|
4
3
|
|
|
5
4
|
$disabled-color_:$color-master-lighter;
|
|
6
5
|
$font-size-base:14px;
|
|
@@ -51,7 +50,7 @@ $ease-in-out-circ:ease;
|
|
|
51
50
|
}
|
|
52
51
|
|
|
53
52
|
&:focus {
|
|
54
|
-
box-shadow: 0 0 0 2px
|
|
53
|
+
box-shadow: 0 0 0 2px rgba($color-master-light, 0.2);
|
|
55
54
|
outline: 0;
|
|
56
55
|
}
|
|
57
56
|
|