42 lines
885 B
SCSS
42 lines
885 B
SCSS
|
|
/* 측정 툴팁 스타일 */
|
||
|
|
/* 참조: mda-react-front/src/map/control.css */
|
||
|
|
|
||
|
|
.ol-tooltip {
|
||
|
|
position: relative;
|
||
|
|
padding: 0.4rem 0.8rem;
|
||
|
|
border-radius: 0.4rem;
|
||
|
|
font-size: 1.2rem;
|
||
|
|
white-space: nowrap;
|
||
|
|
pointer-events: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
.ol-tooltip-measure {
|
||
|
|
background: rgba(255, 237, 169, 0.85);
|
||
|
|
color: #333;
|
||
|
|
font-weight: 600;
|
||
|
|
border: 0.1rem solid rgba(200, 180, 100, 0.5);
|
||
|
|
}
|
||
|
|
|
||
|
|
.ol-tooltip-static {
|
||
|
|
background: rgba(255, 237, 169, 0.85);
|
||
|
|
color: #333;
|
||
|
|
font-weight: 600;
|
||
|
|
border: 0.1rem solid rgba(200, 180, 100, 0.5);
|
||
|
|
}
|
||
|
|
|
||
|
|
.ol-tooltip-segment {
|
||
|
|
background: rgba(255, 255, 255, 0.8);
|
||
|
|
color: #555;
|
||
|
|
font-size: 1.1rem;
|
||
|
|
font-weight: 500;
|
||
|
|
border: 0.1rem solid rgba(180, 180, 180, 0.6);
|
||
|
|
}
|
||
|
|
|
||
|
|
.ol-tooltip-segment-static {
|
||
|
|
background: rgba(255, 255, 255, 0.75);
|
||
|
|
color: #666;
|
||
|
|
font-size: 1.1rem;
|
||
|
|
font-weight: 500;
|
||
|
|
border: 0.1rem solid rgba(180, 180, 180, 0.5);
|
||
|
|
}
|