@datalayer/core
Version:
[](https://datalayer.io)
59 lines (50 loc) • 841 B
CSS
/*
* Copyright (c) 2023-2025 Datalayer, Inc.
* Distributed under the terms of the Modified BSD License.
*/
.crosshairs {
position: fixed;
width: 100%;
z-index: 2147483645;
}
.crosshairs.hidden {
display: none;
}
.crosshairs::before,
.crosshairs::after {
content: '';
position: absolute;
}
.crosshairs::before {
height: 24px;
width: 2px;
background: #000;
top: -11px;
}
.crosshairs::after {
width: 24px;
height: 2px;
background: #000;
left: -11px;
}
.overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
}
.overlay.highlighting {
background: none;
border-color: rgba(0, 0, 0, 0.5);
border-style: solid;
}
.crosshairs,
.crosshairs:before,
.crosshairs:after,
.overlay,
.overlay:before,
.overlay:after {
box-sizing: border-box;
}