openreplay/frontend/app/player/web/Screen/marker.module.css
Delirium 309a9fd970
feat: tag and watch (UI/Tracker) (#1822)
* feat(ui/tracker): start tag n watch

* fix(tracker): test coverage, fix some watcher api

* fix(tracker): add intersectionobserver, adjust tests

* feat(tracker): relay + apollo plugins

* feat(ui): tags search

* feat(ui): tags name edit

* feat(ui): tags search icon

* feat(ui): icons for tabs in player

* feat(ui): save and find button

* feat(tracker): save tags in session storage (just in case)

* feat(ui): improve loading

* feat(ui): fix icon names gen

* feat(ui): fix typo
2024-01-19 11:11:27 +01:00

59 lines
No EOL
1.1 KiB
CSS

.marker {
display: none;
position: absolute;
background: rgba(40, 40, 100, .3);
pointer-events: none;
}
.marker div:not(.tooltip, .tooltip > div) {
position: absolute;
background-image: linear-gradient(45deg, #00d 25%, #fff 25%, #fff 75%, #00d 75%, #00d),
linear-gradient(45deg, #00d 25%, #fff 25%, #fff 75%, #00d 75%, #00d);
background-size: 5px 5px;
}
.markerL {
left: -1px;
top: -100vh;
bottom: -100vh;
width: 1px;
}
.markerT {
top: -1px;
left: -100vw;
right: -100vw;
height: 1px;
}
.markerR {
right: 1px;
top: -100vh;
bottom: -100vh;
width: 1px;
}
.markerB {
bottom: 1px;
left: -100vw;
right: -100vw;
height: 1px;
}
.tooltip {
position: absolute;
left: 0;
bottom: 100%;
padding: 8px;
max-width: 600px;
box-shadow: 2px 2px 1px rgba(40, 40, 100, .3);
z-index: 999;
border-radius: 3px;
background-color: #202124;
min-width: 300px;
font-size: 16px !important;
color:#9BBBDC;
}
.tooltipHint {
margin-top: 4px;
font-size: 14px;
width: 100%;
text-align: center;
color: rgba(138, 170, 201, 0.8);
}