派生自 wuyushui/SewerAndRainNetwork

chenyabin
2021-04-15 09f39367a9f30309bbd77b37062a54c9c8d7ebae
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
@import "_map-variable";
 
.s-map-popup {
    //position: relative;
    .leaflet-popup-content-wrapper, .leaflet-popup-tip {
        background-color: @background-color;
        /*background-color: transparent;*/
        border: .00521rem solid @color;
        //-webkit-box-shadow: 0 0 0.03125rem 0 @color;
        //box-shadow: 0 0 0.03125rem 0 @color;
        -webkit-box-shadow: 0 0 10px 0 @color;
        box-shadow: 0 0 .03rem @color;
        //border-radius: .03rem;
        padding:6px;
        border-radius: 10px;
        .leaflet-popup-content{margin: 0}
 
    }
 
    .leaflet-popup-tip-container {
        display: none;
    }
 
    .leaflet-popup-content-wrapper:before {
        content: "";
        position: absolute;
        left: 50%;
        bottom: -.03rem;
        -webkit-transform: translateX(-50%) rotate(
                        45deg
        );
        transform: translateX(-50%) rotate(
                        45deg
        );
        width: .06rem;
        height: .06rem;
        background-color: @background-color;
        border-right: .00521rem solid @color;
        border-bottom: .00521rem solid @color;
    }
 
}
 
.s-map-popup-panel {
    color: @color;
}