ui-soxo-bootstrap-core 2.6.1-dev.20 → 2.6.1-dev.21

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.
@@ -123,7 +123,7 @@
123
123
  .right-section {
124
124
  margin-top: 0px;
125
125
  width: 100%;
126
- overflow-x: auto;
126
+ overflow-x: scroll;
127
127
  position: relative;
128
128
  padding: 15px;
129
129
  margin-left: 212px;
@@ -155,10 +155,12 @@
155
155
  }
156
156
  }
157
157
 
158
- @media only screen and (max-width: 768px) {
158
+ @media only screen and (max-width: 768px) {
159
159
  margin-left: 0 !important; // remove left margin on mobile
160
160
  padding: 10px !important;
161
161
  }
162
+
163
+
162
164
  }
163
165
 
164
166
  .profile-avatar {
@@ -201,19 +203,16 @@
201
203
  display: flex;
202
204
  justify-content: space-between;
203
205
  // padding: 3px 8px;
204
- border: 1px solid rgba(224, 229, 238, 0.9);
206
+ border-bottom: 1px solid #d7d7d787;
205
207
  position: fixed;
206
- height: 58px;
208
+ height: 56px;
207
209
  top: 0;
208
- background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(249, 250, 252, 0.98) 100%);
209
- backdrop-filter: blur(12px);
210
+ background: white;
210
211
  z-index: 1000;
211
212
  width: 92%;
212
213
  overflow-x: hidden;
213
214
  overflow-y: hidden;
214
- padding: 8px 12px;
215
- border-radius: 0 0 14px 14px;
216
- box-shadow: 0 10px 26px rgba(16, 24, 40, 0.06);
215
+ padding: 15px;
217
216
 
218
217
  &.open {
219
218
  width: calc(100% - 212px);
@@ -221,27 +220,20 @@
221
220
  left: 212px;
222
221
  }
223
222
 
224
- &.close {
225
- width: calc(100% - 96px);
226
- left: 88px;
227
- }
223
+ @media only screen and (max-width: 768px) {
224
+ padding: 8px 10px 8px 14px !important;
225
+ left: 0 !important;
226
+ width: 100% !important;
228
227
 
229
- @media only screen and (max-width: 768px) {
230
- padding: 8px 10px 8px 14px !important;
231
- left: 0 !important;
228
+ &.open {
232
229
  width: 100% !important;
233
-
234
- &.open {
235
- width: 100% !important;
236
- left: 0 !important;
237
- }
230
+ left: 0 !important;
238
231
  }
232
+ }
233
+
239
234
 
240
235
  .page-header-name {
241
236
  display: flex;
242
- align-items: center;
243
- gap: 8px;
244
- min-width: 0;
245
237
  }
246
238
 
247
239
  &.hidden {
@@ -251,41 +243,23 @@
251
243
  .toggle-box {
252
244
  display: flex;
253
245
  align-items: center;
254
- justify-content: center;
255
246
  cursor: pointer;
256
- min-width: 34px;
257
- height: 34px;
258
- border-radius: 10px;
259
- background: rgba(255, 255, 255, 0.8);
260
- transition:
261
- background-color 180ms ease,
262
- border-color 180ms ease,
263
- box-shadow 180ms ease,
264
- transform 180ms ease;
265
247
 
266
248
  h4 {
267
249
  margin-bottom: 0px;
268
250
  }
269
-
270
- &:hover {
271
- background: rgba(247, 248, 251, 0.98);
272
- border-color: rgba(219, 225, 235, 0.95);
273
- box-shadow: 0 2px 8px rgba(71, 85, 105, 0.08);
274
- transform: translateY(-1px);
275
- }
276
251
  }
277
252
 
278
253
  .toggle-menu {
279
- margin-right: 2px;
254
+ margin-right: 10px;
280
255
  cursor: pointer;
281
256
  // padding: 10px;
282
257
  // border-radius: 4px;
283
258
  // border: 1px solid #dcdcdc;
284
- margin-right: 6px;
285
- border: 1px solid rgba(225, 231, 240, 0.95);
259
+ margin-right: 10px;
286
260
 
287
261
  span {
288
- margin-right: 0;
262
+ margin-right: 10px;
289
263
  }
290
264
 
291
265
  &:hover {
@@ -306,97 +280,22 @@
306
280
  .page-menu {
307
281
  display: flex;
308
282
  align-items: center;
309
- gap: 8px;
310
- min-width: 0;
311
- padding: 4px 6px;
312
- border-radius: 12px;
313
- border: 1px solid rgba(228, 233, 242, 0.9);
314
- background: rgba(255, 255, 255, 0.72);
315
- backdrop-filter: blur(8px);
283
+ gap: 15px;
316
284
 
317
285
  a {
318
- margin: 0;
319
- }
320
-
321
- .header-action {
322
- display: inline-flex;
323
- align-items: center;
324
- min-height: 34px;
325
- }
326
-
327
- .header-action .ant-btn {
328
- border-radius: 10px;
329
- border-color: rgba(223, 229, 238, 0.95);
330
- background: rgba(255, 255, 255, 0.9);
331
- box-shadow: none;
332
- transition:
333
- border-color 180ms ease,
334
- box-shadow 180ms ease,
335
- transform 180ms ease,
336
- background-color 180ms ease;
337
- }
338
-
339
- .header-action .ant-btn:hover {
340
- background: rgba(247, 248, 251, 0.98);
341
- border-color: rgba(219, 225, 235, 0.95);
342
- box-shadow: 0 2px 8px rgba(71, 85, 105, 0.08);
343
- transform: translateY(-1px);
344
- }
345
-
346
- .header-action-search {
347
- position: relative;
348
- }
349
-
350
- .header-action-search .ant-input-affix-wrapper {
351
- height: 34px;
352
- border-radius: 10px;
353
- border-color: rgba(223, 229, 238, 0.95);
354
- background: rgba(255, 255, 255, 0.9);
355
- box-shadow: none;
356
- transition:
357
- border-color 180ms ease,
358
- box-shadow 180ms ease,
359
- background-color 180ms ease;
360
- }
361
-
362
- .header-action-search .ant-input-affix-wrapper:hover {
363
- border-color: rgba(214, 221, 232, 0.95);
364
- background: rgba(249, 250, 252, 0.98);
365
- }
366
-
367
- .header-action-search .ant-input-affix-wrapper:focus-within {
368
- border-color: rgba(148, 163, 184, 0.95);
369
- box-shadow: 0 0 0 3px rgba(148, 163, 184, 0.14);
286
+ margin: 0px 5px;
370
287
  }
371
288
 
372
289
  .branch-selection {
373
290
  margin: 0px 10px;
374
291
  }
375
- .branch-switcher {
292
+ .branch-switcher {
376
293
  .branches {
377
294
  .ant-select {
378
295
  min-width: 150px;
379
296
  }
380
297
  }
381
298
  }
382
-
383
- .header-profile-wrap {
384
- padding: 0 6px 0 2px;
385
- border-radius: 10px;
386
- border: 1px solid rgba(228, 233, 242, 0.75);
387
- background: rgba(255, 255, 255, 0.82);
388
- gap: 4px;
389
- }
390
-
391
- .header-profile-name {
392
- display: inline-block;
393
- max-width: 132px;
394
- overflow: hidden;
395
- text-overflow: ellipsis;
396
- white-space: nowrap;
397
- font-size: 12px;
398
- font-weight: 600;
399
- }
400
299
  }
401
300
 
402
301
  .header-blk {
@@ -416,10 +315,6 @@
416
315
  margin-bottom: 10px;
417
316
  }
418
317
  }
419
-
420
- .page-content-stage {
421
- will-change: transform, opacity;
422
- }
423
318
  }
424
319
 
425
320
  .side-drawer-content-wrapper {
@@ -428,40 +323,7 @@
428
323
  padding: 0px;
429
324
  }
430
325
  }
431
- }
432
-
433
- @media only screen and (max-width: 1100px) {
434
- .global-header {
435
- .page-wrapper {
436
- .page-menu {
437
- gap: 6px;
438
- }
439
-
440
- .page-menu .header-profile-name {
441
- max-width: 88px;
442
- }
443
-
444
- .page-menu .header-action-search .ant-input-affix-wrapper {
445
- width: 210px !important;
446
- }
447
- }
448
- }
449
- }
450
-
451
- @media only screen and (max-width: 900px) {
452
- .global-header {
453
- .page-wrapper {
454
- padding: 7px 10px;
455
-
456
- .page-menu {
457
- padding: 4px;
458
- }
459
-
460
- .page-menu .header-profile-name {
461
- display: none;
462
- }
463
- }
464
- }
326
+
465
327
  }
466
328
 
467
329
  .sidebar-container {
@@ -499,7 +361,7 @@
499
361
  .ant-drawer-body {
500
362
  padding: 0px;
501
363
  }
502
- .ant-drawer-header {
364
+ .ant-drawer-header{
503
365
  padding: 2px 20px;
504
366
  }
505
367
  }
@@ -22,89 +22,7 @@ export const boxVariants = {
22
22
  },
23
23
  right: { x: [null, 150, 0] },
24
24
  zoom: { scale: [null, 2, 1], rotate: [0, 90, 0] }
25
- };
26
-
27
- export const sidebarIntroVariants = {
28
- hidden: {
29
- opacity: 0,
30
- y: -10,
31
- filter: 'blur(6px)',
32
- },
33
- visible: {
34
- opacity: 1,
35
- y: 0,
36
- filter: 'blur(0px)',
37
- transition: {
38
- duration: 0.35,
39
- ease: [.22,1,.36,1],
40
- },
41
- },
42
- };
43
-
44
- export const sidebarMenuSurfaceVariants = {
45
- hidden: {
46
- opacity: 0,
47
- x: -10,
48
- filter: 'blur(4px)',
49
- },
50
- visible: {
51
- opacity: 1,
52
- x: 0,
53
- filter: 'blur(0px)',
54
- transition: {
55
- duration: 0.4,
56
- ease: [.22,1,.36,1],
57
- when: 'beforeChildren',
58
- staggerChildren: 0.035,
59
- delayChildren: 0.05,
60
- },
61
- },
62
- };
63
-
64
- export const sidebarGroupVariants = {
65
- hidden: {},
66
- visible: {
67
- transition: {
68
- staggerChildren: 0.03,
69
- },
70
- },
71
- };
72
-
73
- export const sidebarItemRevealVariants = {
74
- hidden: { opacity: 0, x: -8, y: 2 },
75
- visible: {
76
- opacity: 1,
77
- x: 0,
78
- y: 0,
79
- transition: {
80
- duration: 0.26,
81
- ease: [.22,1,.36,1],
82
- },
83
- },
84
- };
85
-
86
- export const sidebarLoaderContainerVariants = {
87
- hidden: { opacity: 0 },
88
- visible: {
89
- opacity: 1,
90
- transition: {
91
- staggerChildren: 0.06,
92
- delayChildren: 0.04,
93
- },
94
- },
95
- };
96
-
97
- export const sidebarLoaderRowVariants = {
98
- hidden: { opacity: 0, x: -8 },
99
- visible: {
100
- opacity: 1,
101
- x: 0,
102
- transition: {
103
- duration: 0.25,
104
- ease: [.22,1,.36,1],
105
- },
106
- },
107
- };
25
+ }
108
26
 
109
27
  export const barsVariant = {
110
28
  animate: { transition: { staggerChildren: 0.095 } }
@@ -131,4 +49,4 @@ export const sidebarLoaderRowVariants = {
131
49
  scale: [1, 0, 1],
132
50
  rotate: [0, 360, 0]
133
51
  }
134
- }
52
+ }