ansel0926
2022-05-17 885edef97a642aaceede847c084f70156cbfe9a9
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
47
48
49
50
51
.bx-popup-ctn{
    position: absolute;
    z-index: 999;
    background: transparent;
    opacity: 1;
    border-radius: 4px;
    border-style:solid;
    border-color: rgb(0,133,203);
}
.bx-popup-tip-container {
    width: 40px;
    height: 20px;
    position: absolute;
    left: 50%;
    margin-left: -20px;
    overflow: hidden;
    pointer-events: none;
}
.bx-popup-tip {
    width: 17px;
    background: rgb(0,133,203,0.5);
    height: 17px;
    padding: 1px;
    margin: -10px auto 0;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.bx-popup-header-ctn{
    background: rgb(0,133,203);
    color: #fff;
    font-size: 15px;
    padding: 4px;
}
.bx-popup-content-ctn{
    padding:15px ;
    width: 200px;
    height: 150px;
    background: rgb(0,133,203,0.5);
}
.leaflet-popup-close-button{
    user-select: auto;
    position: absolute;
    padding: 4px;
    right: 0;
    top: 0;
    color: #fff;
    cursor: pointer;
    font-size: 15px;
}