1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
| .planar-polygon-edit-tooltip {
| position: absolute;
| top: 0px;
| left: 0px;
| }
|
| .planar-polygon-edit-tooltip .planar-polygon-edit-menu {
| padding: 4px 0px;
| transform: translate(24px, 10px);
| background: url('@/assets/images/mapEdit/newcon_box.png') no-repeat center / 100% 100%;
| border-radius: 4px;
| }
|
| .planar-polygon-edit-tooltip .planar-polygon-edit-menu div {
| color: #fff;
| width: 90px;
| height: 26px;
| display: flex;
| align-items: center;
| justify-content: center;
| cursor: pointer;
| font-weight: bold;
| font-size: 12px;
| }
|
| .planar-polygon-edit-tooltip .planar-polygon-edit-menu div:hover {
| background-color: rgba(0, 0, 0, 0.3);
| }
|
|