Projekt

Obecné

Profil

« Předchozí | Další » 

Revize 0b27c108

Přidáno uživatelem Jan Kohlíček před asi 7 roky(ů)

refs #6777: Komunikace s REST API, přispůsobení REST API, vyhledávání lokalit, možnost schovat graf, ošetření expirace tokenu, přidání loading screenu, generování tokenu do stránky

Zobrazit rozdíly:

frontend/assets/css/main.css
26 26
    font-weight: bold;
27 27
}
28 28

  
29
#search footer {
30
    position: absolute;
31
    right: 0;
32
    bottom: 0;
33
    left: 0;
34
    font-size: 0.8rem;
29
.searchWrapper{
30
    min-height: calc(100% - 40px);
31
    float: left;
35 32
}
36 33

  
37 34
#graph {
......
48 45
}
49 46

  
50 47

  
48
/* LOADING */
49
.loading {
50
    border: 6px solid white; /* Light grey */
51
    border-top: 6px solid #007bff; /* Blue */
52
    border-radius: 50%;
53
    width: 50px;
54
    height: 50px;
55
    animation: spin 2s linear infinite;
56
    margin: 0 auto;
57
}
58

  
59
@keyframes spin {
60
    0% { transform: rotate(0deg); }
61
    100% { transform: rotate(360deg); }
62
}
63

  
64

  
65
#loadingScreen{
66
    position: fixed;
67
    width: 100%;
68
    height: 100%;
69
    z-index: 1000;
70
    top: 0;
71
    left: 0;
72
    right: 0;
73
    bottom: 0;
74
    background-color: #CFD8DC;
75
}
76

  
77
#loadingScreen .loading{
78
    border: 12px solid white; /* Light grey */
79
    border-top: 12px solid #007bff; /* Blue */
80
    border-radius: 50%;
81
    width: 100px;
82
    height: 100px;
83
    animation: spin 2s linear infinite;
84
    margin: auto auto;
85
    position: fixed;
86
    top: 0;
87
    bottom: 0;
88
    left: 0;
89
    right: 0;
90
}
91

  
92

  
93

  
94

  
95

  
96

  
97

  
98

  
51 99

  

Také k dispozici: Unified diff