desk-kit 2.0.4 → 2.0.5

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/style.css ADDED
@@ -0,0 +1,851 @@
1
+ :root {
2
+ --main-color: #090c0f;
3
+ --primary-color: #0568fd;
4
+ --primary-color-light_20: #3c89fd;
5
+ --primary-color-light_80: #e3eefe;
6
+ --primary-color-dark_20: #0350c4;
7
+ --primary-color-dark_80: #000b1c;
8
+ --secondary-color: #17152b;
9
+ --secondary-color-light_20: #454455;
10
+ --aditional-color: #e76a4f;
11
+ --border-color: #707070;
12
+ --low-contrarst: #e0e0e2;
13
+ --low-contrarst-50: hsla(240, 3%, 88%, 0.5);
14
+ --low-contrarst-20: hsla(240, 3%, 88%, 0.2);
15
+ --mid-contrarst: #747380;
16
+ --border-radius: 5px;
17
+ --min-border-radius: 3px;
18
+ --font-regular: "Inter";
19
+ --font-medium: "Inter";
20
+ --font-bold: "Inter";
21
+ --error-color: #c72f37;
22
+ --warning-color: #eaad1c;
23
+ --success-color: #64bf4b;
24
+ --purple-color: #523395;
25
+ --font-size: 16px;
26
+ }
27
+
28
+ * {
29
+ box-sizing: border-box;
30
+ padding: 0;
31
+ margin: 0;
32
+ }
33
+
34
+ body {
35
+ margin: 0px;
36
+ padding: 0px;
37
+ font-family: Inter;
38
+ text-rendering: optimizeLegibility;
39
+ -webkit-font-smoothing: antialiased;
40
+ -moz-osx-font-smoothing: grayscale;
41
+ background-color: #f8fafd;
42
+ font-size: 16px;
43
+ font-size: var(--font-size);
44
+ }
45
+
46
+ .box {
47
+ padding: 15px;
48
+ padding-top: 30px;
49
+ padding-bottom: 30px;
50
+ min-height: 200px;
51
+ border-radius: 10px;
52
+ }
53
+
54
+ .link {
55
+ color: #0568fd;
56
+ cursor: pointer;
57
+ -webkit-text-decoration: underline;
58
+ text-decoration: underline;
59
+ font-size: 14px;
60
+ }
61
+
62
+ .wrapper {
63
+ width: 100%;
64
+ }
65
+
66
+ .wrapper .content {
67
+ width: 100%;
68
+ display: flex;
69
+ align-items: stretch;
70
+ flex-direction: row;
71
+ }
72
+
73
+ .body {
74
+ background-color: white;
75
+ width: 100%;
76
+ border-radius: 20px 0px 0px 0px;
77
+ min-height: calc(100vh - 80px);
78
+ }
79
+
80
+ @media all and (max-width: 768px) {
81
+ .body {
82
+ border-radius: 20px 20px 0px 0px;
83
+ margin-bottom: 80px;
84
+ }
85
+ }
86
+
87
+ .pincode-input-text {
88
+ font-family: Inter;
89
+ font-weight: bold;
90
+ font-size: 22px;
91
+ }
92
+
93
+ @media (prefers-color-scheme: dark) {
94
+ html {
95
+ --csstools-color-scheme--light: ;
96
+ color-scheme: dark;
97
+ }
98
+ }
99
+
100
+ @media (prefers-color-scheme: dark) {
101
+ .body {
102
+ background-color: #121212;
103
+ }
104
+ body {
105
+ background-color: #1b1b1b;
106
+ }
107
+ .pincode-input-text {
108
+ border-color: white !important;
109
+ }
110
+ }
111
+
112
+ .home_select {
113
+ list-style-type: none;
114
+ margin: 0px;
115
+ padding: 0px;
116
+ }
117
+
118
+ .home_select li a {
119
+ -webkit-text-decoration: none;
120
+ text-decoration: none;
121
+ color: inherit;
122
+ }
123
+
124
+ .home_select li {
125
+ padding: 15px;
126
+ border: 1px solid rgba(0, 0, 0, 0.13);
127
+ border-bottom: 0px;
128
+ }
129
+
130
+ .home_select li:first-child {
131
+ border-radius: 10px 10px 0px 0px;
132
+ }
133
+
134
+ .home_select li:last-child {
135
+ border-radius: 0px 0px 10px 10px;
136
+ border-bottom: 1px solid rgba(0, 0, 0, 0.13);
137
+ }
138
+
139
+ @media (prefers-color-scheme: dark) {
140
+ .home_select li {
141
+ border-color: rgba(255, 255, 255, 0.13);
142
+ }
143
+ .home_select li:last-child {
144
+ border-bottom: 1px solid rgba(255, 255, 255, 0.13);
145
+ }
146
+ }
147
+
148
+ .mapa-container {
149
+ position: relative;
150
+ }
151
+
152
+ .mapa-container:before {
153
+ position: absolute;
154
+ content: "";
155
+ background-color: black;
156
+ width: 1px;
157
+ left: 50%;
158
+ top: 0px;
159
+ bottom: 0px;
160
+ z-index: 1;
161
+ }
162
+
163
+ .mapa-container:after {
164
+ position: absolute;
165
+ content: "";
166
+ background-color: black;
167
+ height: 1px;
168
+ left: 0px;
169
+ right: 0px;
170
+ top: 50%;
171
+ z-index: 1;
172
+ }
173
+
174
+ /* .cropper-view-box,
175
+ .cropper-face {
176
+ border-radius: 50%;
177
+ }
178
+
179
+ .cropped-image {
180
+ border-radius: 50%;
181
+ } */
182
+
183
+ .drop-zone {
184
+ display: flex;
185
+ flex-direction: column;
186
+ align-items: center;
187
+ justify-content: center;
188
+ min-height: 150px;
189
+ border-radius: 10px;
190
+ padding: 15px;
191
+ border: 1px dashed #3c89fd;
192
+ border: 1px dashed var(--primary-color-light_20);
193
+ }
194
+
195
+ .drop-zone.isDragActive {
196
+ border-color: #000b1c;
197
+ }
198
+
199
+ .text-align-right {
200
+ text-align: right;
201
+ }
202
+
203
+ .text-align-center {
204
+ text-align: center;
205
+ }
206
+
207
+ .text-center {
208
+ text-align: center;
209
+ }
210
+
211
+ .folder-card {
212
+ width: 100%;
213
+ background-color: #e3eefe;
214
+ border-radius: 8px;
215
+ box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
216
+ position: relative;
217
+ padding: 20px;
218
+ padding-left: 20px;
219
+ color: #333;
220
+ font-family: Arial, sans-serif;
221
+ min-height: 220px;
222
+ }
223
+
224
+ .folder-tab {
225
+ position: absolute;
226
+ left: 0px;
227
+ top: -16px;
228
+ width: 45%;
229
+ height: 30px;
230
+ background-color: #e3eefe;
231
+ border-radius: 5px 5px 0px 0px;
232
+ display: flex;
233
+ align-items: center;
234
+ justify-content: center;
235
+ font-weight: bold;
236
+ }
237
+
238
+ .folder-content {
239
+ margin-top: 0px;
240
+ }
241
+
242
+ .folder-style {
243
+ overflow: visible;
244
+ position: relative;
245
+ background-color: #e3eefe;
246
+ border: 1px solid #abccfe;
247
+ border-radius: 0px 10px 10px 10px;
248
+ }
249
+
250
+ .folder-style:before {
251
+ content: "";
252
+ position: absolute;
253
+ height: 30px;
254
+ top: -30px;
255
+ width: 200px;
256
+ background: #e3eefe;
257
+ border-radius: 10px 10px 0px 0px;
258
+ border-left: 1px solid #abccfe;
259
+ border-top: 1px solid #abccfe;
260
+ border-right: 1px solid #abccfe;
261
+ left: -1px;
262
+ }
263
+
264
+ .folder-min-height {
265
+ min-height: 120px;
266
+ }
267
+
268
+ .folder-style.selected {
269
+ border-color: #0568fd;
270
+ }
271
+
272
+ .folder-style.selected::before {
273
+ border-color: #0568fd;
274
+ }
275
+
276
+ .contentsearch fieldset {
277
+ border-radius: 30px;
278
+ }
279
+
280
+ .contentsearch select {
281
+ min-width: 138px;
282
+ }
283
+
284
+ .gray {
285
+ color: #454455;
286
+ }
287
+
288
+ .card-skyblue {
289
+ background-color: #f8fafd;
290
+ padding: 4px;
291
+ margin-top: 0px;
292
+ justify-content: space-between;
293
+ border-radius: 5px;
294
+ }
295
+
296
+ .bold {
297
+ font-weight: bold;
298
+ }
299
+
300
+ .date {
301
+ font-size: 12px;
302
+ padding: 0px;
303
+ line-height: 1.43;
304
+ margin: 0px;
305
+ display: flex;
306
+ align-items: center;
307
+ }
308
+
309
+ @media (prefers-color-scheme: dark) {
310
+ .folder-style {
311
+ background-color: transparent !important;
312
+ background-color: initial !important;
313
+ border-color: currentcolor !important;
314
+ border-color: initial !important;
315
+ border: 0px !important;
316
+ }
317
+ .folder-style::before {
318
+ border: 0px !important;
319
+ background: linear-gradient(
320
+ rgba(255, 255, 255, 0.05),
321
+ rgba(255, 255, 255, 0.05)
322
+ );
323
+ }
324
+ .folder-style.selected {
325
+ border-color: currentcolor !important;
326
+ border-color: initial !important;
327
+ border: 1px solid white !important;
328
+ }
329
+ .folder-style.selected::before {
330
+ border-color: currentcolor !important;
331
+ border-color: initial !important;
332
+ border: 1px solid white !important;
333
+ }
334
+ .gray {
335
+ color: #000 !important;
336
+ color: initial !important;
337
+ }
338
+ .card-skyblue {
339
+ background-color: transparent !important;
340
+ background-color: initial !important;
341
+ }
342
+ }
343
+
344
+ .table-row-draggable .icon-draggable {
345
+ display: none;
346
+ }
347
+
348
+ .table-row-draggable:hover .icon-draggable,
349
+ .table-row-draggable.isDragging .icon-draggable {
350
+ display: block;
351
+ }
352
+
353
+ .table-row-draggable:hover td {
354
+ border-bottom: 1px solid #0568fd !important;
355
+ }
356
+
357
+ .table-row-draggable:hover td:first-child {
358
+ border-bottom: 0px !important;
359
+ }
360
+
361
+ .table-row-draggable td:first-child {
362
+ position: relative;
363
+ }
364
+
365
+ .table-row-draggable td:first-child::after {
366
+ content: "";
367
+ position: absolute;
368
+ width: 4px;
369
+ height: 4px;
370
+ border-radius: 4px;
371
+ background-color: #e0e0e2;
372
+ bottom: 0px;
373
+ right: 50%;
374
+ }
375
+
376
+ .table-row-draggable.isDragging td:first-child::after {
377
+ display: none !important;
378
+ }
379
+
380
+ .add-item-table {
381
+ display: none;
382
+ position: absolute;
383
+ bottom: -10px;
384
+ width: 20px;
385
+ height: 20px;
386
+ left: 50%;
387
+ background-color: #0568fd;
388
+ border-radius: 50%;
389
+ border: 0px;
390
+ cursor: pointer;
391
+ }
392
+
393
+ .mar-3 {
394
+ margin-right: 8px;
395
+ }
396
+
397
+ .add-item-table::after {
398
+ content: "";
399
+ position: absolute;
400
+ width: 30px;
401
+ height: 1px;
402
+ background-color: #0568fd;
403
+ right: -30px;
404
+ top: calc(50%);
405
+ cursor: pointer;
406
+ }
407
+
408
+ .table-row-draggable:not():hover td,
409
+ .table-row-draggable.isDragging td {
410
+ background-color: #f8fafd;
411
+ }
412
+
413
+ .table-row-draggable.isDragging td {
414
+ border-bottom: 0px;
415
+ }
416
+
417
+ .table-row-draggable td:first-child {
418
+ border-radius: 10px 0px 0px 10px;
419
+ }
420
+
421
+ .table-row-draggable td:last-child {
422
+ border-radius: 0px 10px 10px 0px;
423
+ }
424
+
425
+ @media (prefers-color-scheme: dark) {
426
+ .table-row-draggable:hover td,
427
+ .table-row-draggable.isDragging td {
428
+ background-color: #111b22;
429
+ }
430
+ }
431
+
432
+ .table-row-draggable:hover td:first-child::after {
433
+ display: none;
434
+ }
435
+
436
+ .table-row-draggable:hover .add-item-table {
437
+ display: block;
438
+ }
439
+
440
+ .table-header td {
441
+ background-color: #012254;
442
+ border-bottom: 0px !important;
443
+ }
444
+
445
+ .section-table {
446
+ margin-bottom: 15px;
447
+ }
448
+
449
+ table.section-table .section-footer td {
450
+ background-color: #012254;
451
+ border-radius: 0px 0px 10px 10px;
452
+ }
453
+
454
+ .section-borders-left:not(.isDragging) {
455
+ border-left: 1px solid #012254;
456
+ }
457
+
458
+ .section-borders-right:not(.isDragging) {
459
+ border-right: 1px solid #012254;
460
+ }
461
+
462
+ .table-header-sub-content .section-borders-left:not(.isDragging) {
463
+ border-left: none;
464
+ }
465
+
466
+ .table-header-sub-content .section-borders-right:not(.isDragging) {
467
+ border-right: none;
468
+ }
469
+
470
+ .table-header-sub-content tr:last-child td {
471
+ border-bottom: 0px !important;
472
+ }
473
+
474
+ .table-header td > * {
475
+ color: white !important;
476
+ }
477
+
478
+ .table-header td:first-child {
479
+ border-radius: 10px 0px 0px 0px;
480
+ }
481
+
482
+ .table-header td:last-child {
483
+ border-radius: 0px 10px 0px 0px;
484
+ }
485
+
486
+ .table-header-sub td {
487
+ background-color: #abccfe;
488
+ border-bottom: 0px !important;
489
+ }
490
+
491
+ .table-header-sub td:first-child {
492
+ border-radius: 10px 0px 0px 0px;
493
+ }
494
+
495
+ .table-header-sub td:last-child {
496
+ border-radius: 0px 10px 0px 0px;
497
+ }
498
+
499
+ .table-header-sub.bottom td:first-child {
500
+ border-radius: 0px 0px 10px 10px;
501
+ }
502
+
503
+ .table-header-sub-content {
504
+ border-left: 1px solid #abccfe;
505
+ border-bottom: 1px solid #abccfe;
506
+ border-right: 1px solid #abccfe;
507
+ }
508
+
509
+ .table-header-sub-content table tbody:last-child tr:last-child td {
510
+ border-bottom: 0px !important;
511
+ }
512
+
513
+ .table-concept {
514
+ margin-top: 15px;
515
+ margin-bottom: 15px;
516
+ }
517
+
518
+ .table-concept tbody {
519
+ border: 0px !important;
520
+ }
521
+
522
+ .area-dropable {
523
+ min-height: 30px; /* Ajusta la altura mínima según tus necesidades */
524
+ }
525
+
526
+ .no-border {
527
+ background-color: transparent !important;
528
+ border: 0px !important;
529
+ }
530
+
531
+ .min-height {
532
+ min-height: 30px;
533
+ }
534
+
535
+ .no-wrap {
536
+ white-space: nowrap;
537
+ }
538
+
539
+ .avatarcontent {
540
+ display: flex;
541
+ margin-bottom: auto;
542
+ min-height: 100px;
543
+ }
544
+
545
+ /* Dropdown menu */
546
+
547
+ .dropdown-menu {
548
+ background: white;
549
+ border: 1px solid #454455;
550
+ border: 1px solid var(--secondary-color-light_20);
551
+ border-radius: 0.7rem;
552
+ box-shadow: var(--shadow);
553
+ display: flex;
554
+ flex-direction: column;
555
+ gap: 0.1rem;
556
+ overflow: auto;
557
+ padding: 0.4rem;
558
+ position: relative;
559
+ }
560
+
561
+ .dropdown-menu button {
562
+ align-items: center;
563
+ background-color: transparent;
564
+ display: flex;
565
+ padding: 5px;
566
+ border: 0px;
567
+ text-align: left;
568
+ width: 100%;
569
+ }
570
+
571
+ .dropdown-menu button:hover,
572
+ .dropdown-menu button:hover.is-selected {
573
+ background-color: #e0e0e2;
574
+ background-color: var(--low-contrarst);
575
+ }
576
+
577
+ .dropdown-menu button.is-selected {
578
+ background-color: #0568fd;
579
+ background-color: var(--primary-color);
580
+ color: white;
581
+ }
582
+
583
+ .tiptap :first-child {
584
+ margin-top: 0;
585
+ }
586
+
587
+ .mention {
588
+ background-color: #e3eefe;
589
+ background-color: var(--primary-color-light_80);
590
+ border-radius: 0.4rem;
591
+ -webkit-box-decoration-break: clone;
592
+ box-decoration-break: clone;
593
+ color: #0568fd;
594
+ color: var(--primary-color);
595
+ padding: 0.1rem 0.3rem;
596
+ }
597
+
598
+ .tiptap {
599
+ width: 100%;
600
+ min-height: 60px;
601
+ border: 1px solid #707070;
602
+ min-width: 200px;
603
+ padding: 5px;
604
+ border-radius: 5px;
605
+ }
606
+
607
+ .editor-comments {
608
+ width: 100%;
609
+ }
610
+
611
+ .comment-item {
612
+ margin-bottom: 15px;
613
+ }
614
+
615
+ .comment-wrapper {
616
+ width: 100%;
617
+ }
618
+
619
+ .comment-description {
620
+ position: relative;
621
+ width: 100%;
622
+ background-color: #f8fafd;
623
+ padding: 5px;
624
+ border-radius: 5px;
625
+ min-height: 48px;
626
+ }
627
+
628
+ .comment-description p {
629
+ color: #17152b;
630
+ }
631
+
632
+ .comment-user-name {
633
+ color: #454455;
634
+ font-weight: bold;
635
+ }
636
+
637
+ .notification-item {
638
+ position: relative;
639
+ background-color: white;
640
+ padding: 3px;
641
+ border-radius: 3px;
642
+ margin: 3px;
643
+ margin-left: 5px;
644
+ margin-right: 5px;
645
+ }
646
+
647
+ .notification-item:hover {
648
+ background-color: #f4f4f5;
649
+ cursor: pointer;
650
+ }
651
+
652
+ .notification-description {
653
+ max-width: 300px;
654
+ }
655
+
656
+ .notification-read {
657
+ width: 12px;
658
+ height: 12px;
659
+ border-radius: 12px;
660
+ background-color: #0568fd;
661
+ background-color: var(--primary-color);
662
+ position: absolute;
663
+ top: 8px;
664
+ right: 8px;
665
+ }
666
+
667
+ .comment-description p {
668
+ font-size: 14px;
669
+ }
670
+
671
+ .groupavatars .MuiAvatar-circular {
672
+ width: 36px;
673
+ height: 36px;
674
+ }
675
+
676
+ @media (prefers-color-scheme: dark) {
677
+ .notification-item {
678
+ background-color: transparent;
679
+ }
680
+
681
+ .notification-item:hover {
682
+ background-color: #1b1b1b;
683
+ }
684
+ .comment-description {
685
+ background-color: #1b1b1b;
686
+ }
687
+
688
+ .comment-description p {
689
+ color: white;
690
+ }
691
+ .comment-description span:not(.mention) {
692
+ color: white;
693
+ }
694
+ }
695
+
696
+ .notifications_wrapper {
697
+ width: 100%;
698
+ max-height: 400px;
699
+ overflow-y: scroll;
700
+ }
701
+
702
+ /*header*/
703
+
704
+ header.main {
705
+ width: 100%;
706
+ height: 80px;
707
+ background-color: #f8fafd;
708
+ position: sticky;
709
+ top: 0px;
710
+ z-index: 2;
711
+ padding-left: 15px;
712
+ padding-right: 15px;
713
+ justify-content: space-between;
714
+ display: flex;
715
+ flex-direction: row;
716
+ align-items: center;
717
+ }
718
+
719
+ header.main .button_account {
720
+ border-radius: 5px;
721
+ padding: 5px;
722
+ padding-left: 8px;
723
+ padding-right: 8px;
724
+ cursor: pointer;
725
+ margin-left: 15px;
726
+ }
727
+
728
+ header.main .button_account:hover {
729
+ border-color: #0568fd;
730
+ border-color: var(--primary-color);
731
+ background-color: #0568fd;
732
+ background-color: var(--primary-color);
733
+ }
734
+
735
+ header.main .button_account h6 {
736
+ margin: 0px;
737
+ padding: 0px;
738
+ line-height: normal !important;
739
+ line-height: initial !important;
740
+ }
741
+
742
+ header.main .button_account:hover h6 {
743
+ color: white;
744
+ }
745
+
746
+ header.main .nav {
747
+ display: flex;
748
+ flex-direction: row;
749
+ align-items: center;
750
+ }
751
+
752
+ header.main .nav .logo {
753
+ width: 210px;
754
+ height: 70px;
755
+ margin-right: 15px;
756
+ }
757
+
758
+ header .search {
759
+ position: relative;
760
+ display: flex;
761
+ flex-direction: row;
762
+ background-color: #f3f3f3;
763
+ width: 100%;
764
+ height: 48px;
765
+ border-radius: 5px;
766
+ max-width: 375px;
767
+ }
768
+
769
+ header .search .icon {
770
+ width: 48px;
771
+ height: 48px;
772
+ display: flex;
773
+ flex-direction: row;
774
+ align-items: center;
775
+ justify-content: center;
776
+ }
777
+
778
+ header .search input {
779
+ width: 100%;
780
+ height: 100%;
781
+ position: absolute;
782
+ border: 0px;
783
+ background-color: transparent;
784
+ padding-left: 48px;
785
+ }
786
+
787
+ .app_item {
788
+ -webkit-text-decoration: none;
789
+ text-decoration: none;
790
+ border-radius: 5px;
791
+ width: 100px;
792
+ height: 111px;
793
+ background-color: white;
794
+ display: flex;
795
+ color: inherit;
796
+ flex-direction: column;
797
+ align-items: center;
798
+ justify-content: center;
799
+ }
800
+
801
+ .app_item:hover {
802
+ cursor: pointer;
803
+ background-color: #f4f4f5;
804
+ }
805
+
806
+ .app_item .app_icon {
807
+ display: flex;
808
+ flex-direction: row;
809
+ align-items: center;
810
+ justify-content: center;
811
+ background-color: #e76a4f;
812
+ border-radius: 5px;
813
+ width: 40px;
814
+ height: 40px;
815
+ }
816
+
817
+ @media all and (max-width: 768px) {
818
+ header .logo {
819
+ display: none;
820
+ }
821
+ header .sections {
822
+ display: none;
823
+ }
824
+ header .button_account_name {
825
+ display: none;
826
+ }
827
+ }
828
+
829
+ @media (prefers-color-scheme: dark) {
830
+ header.main {
831
+ background-color: #1b1b1b;
832
+ }
833
+
834
+ header .search {
835
+ background-color: #282a2c;
836
+ }
837
+ header .search svg {
838
+ fill: rgba(255, 255, 255, 0.7) !important ;
839
+ }
840
+ .app_item {
841
+ background-color: transparent;
842
+ }
843
+
844
+ .app_item .app_icon {
845
+ background-color: #a42f16;
846
+ }
847
+
848
+ .app_item:hover {
849
+ background-color: #1b1b1b;
850
+ }
851
+ }