Subversion Repositories eFlore/Applications.cel

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
3845 idir 1
@keyframes leaflet-gestures-fadein {
2
    0% {
3
        opacity: 0;
4
    }
5
    100% {
6
        opacity: 1;
7
    }
8
}
9
 
10
.leaflet-container {
11
    &:after {
12
        animation: leaflet-gestures-fadein 0.8s backwards;
13
        color: #fff;
14
        font-family: "Roboto", Arial, sans-serif;
15
        font-size: 22px;
16
        justify-content: center;
17
        display: flex;
18
        align-items: center;
19
        padding: 15px;
20
        position: absolute;
21
        top: 0;
22
        left: 0;
23
        right: 0;
24
        bottom: 0;
25
        background: rgba(0, 0, 0, 0.5);
26
        z-index: 461;
27
        pointer-events:none;
28
    }
29
}
30
 
31
.leaflet-gesture-handling-touch-warning,
32
.leaflet-gesture-handling-scroll-warning {
33
    &:after {
34
        animation: leaflet-gestures-fadein 0.8s forwards;
35
    }
36
}
37
 
38
.leaflet-gesture-handling-touch-warning {
39
    &:after {
40
        content: attr(data-gesture-handling-touch-content);
41
    }
42
}
43
 
44
.leaflet-gesture-handling-scroll-warning {
45
    &:after {
46
        content: attr(data-gesture-handling-scroll-content);
47
    }
48
}