32 lines
614 B
CSS
32 lines
614 B
CSS
.tab-videoPlayer video{
|
|
width: 100%;
|
|
background: #333;
|
|
}
|
|
.tab-videoPlayer-event-row {
|
|
cursor: pointer;
|
|
}
|
|
.videoPlayer-event-objects .tag {
|
|
position: absolute;
|
|
bottom: 100%;
|
|
left: 0;
|
|
background: red;
|
|
color: #fff;
|
|
font-family: monospace;
|
|
font-size: 80%;
|
|
border-radius: 5px 5px 0 0;
|
|
padding: 3px 5px;
|
|
}
|
|
|
|
.tab-videoPlayer-event-objects .stream-detected-object {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
border: 3px solid red;
|
|
background: transparent;
|
|
border-radius: 5px
|
|
}
|
|
|
|
.tab-videoPlayer:hover .tab-videoPlayer-event-objects {
|
|
display: none;
|
|
}
|