@playkit-js/transcript 3.5.21-canary.0-cf3ec21 → 3.5.21-canary.0-9fc2abc

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@playkit-js/transcript",
3
- "version": "3.5.21-canary.0-cf3ec21",
3
+ "version": "3.5.21-canary.0-9fc2abc",
4
4
  "main": "dist/playkit-transcript.js",
5
5
  "license": "AGPL-3.0",
6
6
  "private": false,
@@ -1,14 +1,18 @@
1
1
  @import '~@playkit-js/playkit-js-ui';
2
+ @import '../../variables.scss';
2
3
 
3
4
  .attach-placeholder-container {
4
5
  position: absolute;
5
- top: 50%;
6
- left: 50%;
7
- transform: translate(-50%, -50%);
6
+ width: 100%;
7
+ height: 100%;
8
+ top: 0;
9
+ left: 0;
8
10
  display: flex;
9
11
  flex-direction: column;
10
12
  justify-content: center;
11
13
  align-items: center;
14
+ background: $plugin-background;
15
+
12
16
  .attach-text {
13
17
  line-height: 20px;
14
18
  font-weight: 700;
@@ -12,10 +12,11 @@
12
12
  height: 100%;
13
13
  width: 100%;
14
14
  position: absolute;
15
- background: rgba(0, 0, 0, 0.6);
15
+ background: $plugin-background;
16
16
  backdrop-filter: blur(8px);
17
17
  -webkit-backdrop-filter: blur(8px);
18
18
  z-index: 1;
19
+ cursor: default;
19
20
  .skip-transcript-button {
20
21
  position: absolute;
21
22
  top: -1000px;
@@ -429,7 +429,7 @@ export class Transcript extends Component<TranscriptProps, TranscriptState> {
429
429
  this._widgetRootRef = node;
430
430
  }}
431
431
  data-testid="transcript_root">
432
- {smallScreen ? (
432
+ {smallScreen && !kitchenSinkDetached ? (
433
433
  <SmallScreenSlate onClose={this.props.onClose} toggledWithEnter={toggledWithEnter} />
434
434
  ) : (
435
435
  <div className={styles.globalContainer}>
@@ -4,6 +4,8 @@
4
4
  $roundness-1: 4px;
5
5
  $roundness-3: 16px;
6
6
 
7
+ $plugin-background: rgba(0, 0, 0, 0.6);
8
+
7
9
  @mixin plugin-scrollbar {
8
10
  &::-webkit-scrollbar {
9
11
  width: 4px;