* fix(tracker): fix time inputs capturing
* fix(player): clear selection manger on clicks; display frustrations row on xray by default
* fix(player): add option todisable network in iframes
* cherry-pick 383b5dd6405d8f47b9d794c123390e91b4154663 conflicts
* Revert "cherry-pick 383b5dd6405d8f47b9d794c123390e91b4154663 conflicts"
This reverts commit 364b62fda0.
* fix(player): fix selection manager styles and reset
---------
Co-authored-by: nick-delirium <nikita@openreplay.com>
27 lines
No EOL
431 B
CSS
27 lines
No EOL
431 B
CSS
.screen {
|
|
user-select: none;
|
|
overflow: hidden;
|
|
position: absolute;
|
|
transform-origin: left top;
|
|
top: 50%;
|
|
left: 50%;
|
|
box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.1);
|
|
}
|
|
.iframe {
|
|
position: absolute;
|
|
border: none;
|
|
background: white;
|
|
}
|
|
.overlay {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
z-index: 10;
|
|
}
|
|
|
|
.highlightoff {
|
|
opacity: 0;
|
|
transition: all 0.25s cubic-bezier(0, 0, 0.4, 1.0);
|
|
} |