@naviedu/room-platform-react 0.0.32 → 0.0.34
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/README.md +1 -3
- package/index.d.ts +0 -2
- package/index.esm.js +104 -106
- package/package.json +1 -1
- package/styles.css +31 -22
package/package.json
CHANGED
package/styles.css
CHANGED
|
@@ -351,20 +351,6 @@
|
|
|
351
351
|
font-weight: 700;
|
|
352
352
|
}
|
|
353
353
|
|
|
354
|
-
.room-platform-workspace-overlay {
|
|
355
|
-
align-items: center;
|
|
356
|
-
display: flex;
|
|
357
|
-
height: 100%;
|
|
358
|
-
justify-content: center;
|
|
359
|
-
overflow: auto;
|
|
360
|
-
width: 100%;
|
|
361
|
-
}
|
|
362
|
-
|
|
363
|
-
.room-platform-workspace-alongside {
|
|
364
|
-
min-width: 18rem;
|
|
365
|
-
width: 35%;
|
|
366
|
-
}
|
|
367
|
-
|
|
368
354
|
.room-platform-sidebar {
|
|
369
355
|
background: var(--room-platform-surface);
|
|
370
356
|
border: 1px solid var(--room-platform-border);
|
|
@@ -518,9 +504,16 @@
|
|
|
518
504
|
.room-platform-participant-row {
|
|
519
505
|
align-items: center;
|
|
520
506
|
display: flex;
|
|
521
|
-
gap: 0.
|
|
507
|
+
gap: 0.75rem;
|
|
522
508
|
justify-content: space-between;
|
|
523
|
-
padding: 0.
|
|
509
|
+
padding: 0.75rem;
|
|
510
|
+
}
|
|
511
|
+
|
|
512
|
+
.room-platform-participant-identity {
|
|
513
|
+
align-items: center;
|
|
514
|
+
display: flex;
|
|
515
|
+
gap: 0.5rem;
|
|
516
|
+
min-width: 0;
|
|
524
517
|
}
|
|
525
518
|
|
|
526
519
|
.room-platform-participant-name,
|
|
@@ -529,8 +522,29 @@
|
|
|
529
522
|
}
|
|
530
523
|
|
|
531
524
|
.room-platform-participant-name {
|
|
532
|
-
|
|
525
|
+
color: var(--room-platform-navy);
|
|
526
|
+
font-size: 1rem;
|
|
533
527
|
font-weight: 700;
|
|
528
|
+
overflow: hidden;
|
|
529
|
+
text-overflow: ellipsis;
|
|
530
|
+
white-space: nowrap;
|
|
531
|
+
}
|
|
532
|
+
|
|
533
|
+
.room-platform-participant-status-dot {
|
|
534
|
+
border-radius: 9999px;
|
|
535
|
+
flex: 0 0 auto;
|
|
536
|
+
height: 0.625rem;
|
|
537
|
+
width: 0.625rem;
|
|
538
|
+
}
|
|
539
|
+
|
|
540
|
+
.room-platform-participant-status-dot[data-online='true'] {
|
|
541
|
+
background: #10b981;
|
|
542
|
+
box-shadow: 0 0 0 2px #d1fae5;
|
|
543
|
+
}
|
|
544
|
+
|
|
545
|
+
.room-platform-participant-status-dot[data-online='false'] {
|
|
546
|
+
background: #cbd5e1;
|
|
547
|
+
box-shadow: 0 0 0 2px #f1f5f9;
|
|
534
548
|
}
|
|
535
549
|
|
|
536
550
|
.room-platform-participant-subtitle {
|
|
@@ -756,9 +770,4 @@
|
|
|
756
770
|
flex-direction: column;
|
|
757
771
|
padding: 0.5rem;
|
|
758
772
|
}
|
|
759
|
-
|
|
760
|
-
.room-platform-workspace-alongside {
|
|
761
|
-
min-width: 0;
|
|
762
|
-
width: 100%;
|
|
763
|
-
}
|
|
764
773
|
}
|