This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
cyber-narrator-cn-ui/src/assets/css/components/views/charts2/npmMap.scss
2022-11-21 17:31:30 +08:00

82 lines
1.5 KiB
SCSS

.cn-chart__map-title {
display: flex;
font-size: 14px;
color: #353636;
font-weight: 600;
margin-bottom: 10px;
}
.cn-chart__map-drilldown.cn-chart__map {
height: calc(100% - 30px);
}
.cn-chart__map {
height: 100%;
width: 100%;
position: relative;
border-radius: 4px;
overflow: hidden;
.map-canvas {
height: 100%;
width: 100%;
background-color: #CAD2D3;
}
.map-filter {
position: absolute;
right: 10px;
top: 10px;
.el-select__popper.map-select-down {
top: 32px !important;
.el-popper__arrow {
display: none;
}
}
.map-select {
margin-left: 10px;
.el-input__inner {
color: #2C72C6;
}
&.map-select__direction {
width: 110px;
}
}
}
.map-legend {
display: flex;
flex-direction: column;
justify-content: center;
height: 92px;
bottom: 10px;
left: 10px;
position: absolute;
padding: 0 10px;
background-color: white;
.map-legend__row {
display: flex;
align-items: center;
height: 23px;
.map-legend__symbol {
height: 8px;
width: 8px;
border-radius: 50%;
&.map-legend__symbol--green {
background-color: #7E9F54;
}
&.map-legend__symbol--yellow {
background-color: #E5A219;
}
&.map-legend__symbol--red {
background-color: #E26154;
}
}
.map-legend__desc {
padding-left: 5px;
color: #575757;
}
}
}
}