派生自 wuyushui/SewerAndRainNetwork

YANGDL
2021-02-08 b27e031827eae0f535d17bb20ff4809699151a17
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
@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;
        padding: .10417rem;
        -webkit-box-shadow: 0 0 0.03125rem 0 @color;
        box-shadow: 0 0 0.03125rem 0 @color;
        border-radius: 1rem;
    }
 
    .leaflet-popup-tip-container {
        display: none;
    }
 
    .leaflet-popup-content-wrapper:before {
        content: "";
        position: absolute;
        left: 50%;
        bottom: -.3rem;
        -webkit-transform: translateX(-50%) rotate(
                        45deg
        );
        transform: translateX(-50%) rotate(
                        45deg
        );
        width: .6rem;
        height: .6rem;
        background-color: @background-color;
        border-right: .00521rem solid @color;
        border-bottom: .00521rem solid @color;
    }
 
}
 
.s-map-popup-panel {
    color: @color;
}