@livelayer/react 0.5.6 → 0.5.8
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/index.js +3 -3
- package/dist/index.mjs +363 -352
- package/dist/styles.css +24 -5
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -683,12 +683,13 @@
|
|
|
683
683
|
background: rgba(0, 0, 0, 0.55);
|
|
684
684
|
}
|
|
685
685
|
|
|
686
|
-
/* Compact pill — used for short codes like "EN".
|
|
687
|
-
|
|
688
|
-
|
|
686
|
+
/* Compact pill — used for short codes like "EN". Same height as the
|
|
687
|
+
sibling pills/buttons in the topbar (40px) so the row is uniform.
|
|
688
|
+
Compact horizontal padding + uppercase / tracked type so it reads
|
|
689
|
+
as an icon-style chip next to the full-size agent name pill. */
|
|
689
690
|
.ll-hpill--compact {
|
|
690
|
-
height:
|
|
691
|
-
padding: 0
|
|
691
|
+
height: 40px;
|
|
692
|
+
padding: 0 12px;
|
|
692
693
|
font-size: 12px;
|
|
693
694
|
font-weight: 600;
|
|
694
695
|
letter-spacing: 0.04em;
|
|
@@ -1000,6 +1001,24 @@
|
|
|
1000
1001
|
color: #fff;
|
|
1001
1002
|
}
|
|
1002
1003
|
|
|
1004
|
+
/* Danger variant — used for End conversation in the toolbar row.
|
|
1005
|
+
Same shape/size as a regular tool; red tint signals "this ends the
|
|
1006
|
+
call." Sits at the right edge of the toolbar so eye flow is L→R:
|
|
1007
|
+
share → camera → mic → speaker → END. */
|
|
1008
|
+
.ll-tool--danger {
|
|
1009
|
+
background: rgba(239, 68, 68, 0.78);
|
|
1010
|
+
border-color: rgba(255, 120, 120, 0.55);
|
|
1011
|
+
color: #fff;
|
|
1012
|
+
/* Pull slightly away from the speaker so it visually groups as
|
|
1013
|
+
"exit", not "yet another media control." */
|
|
1014
|
+
margin-left: 6px;
|
|
1015
|
+
}
|
|
1016
|
+
|
|
1017
|
+
.ll-tool--danger:hover {
|
|
1018
|
+
background: rgba(220, 38, 38, 0.92);
|
|
1019
|
+
border-color: rgba(255, 140, 140, 0.7);
|
|
1020
|
+
}
|
|
1021
|
+
|
|
1003
1022
|
/* Split button: left = toggle, right = device menu */
|
|
1004
1023
|
.ll-tool-split {
|
|
1005
1024
|
position: relative;
|
package/package.json
CHANGED