Project

General

Profile

« Previous | Next » 

Revision 49839

added loader

View differences:

query.html
1
<style>
2
    .loader {
3
    border: 16px solid #f3f3f3; /* Light grey */
4
    border-top: 16px solid #3498db; /* Blue */
5
    border-radius: 50%;
6
    width: 120px;
7
    height: 120px;
8
    animation: spin 2s linear infinite;
9
    margin: auto;
10
}
11

  
12
@keyframes spin {
13
    0% { transform: rotate(0deg); }
14
    100% { transform: rotate(360deg); }
15
}
16
</style>
17

  
18

  
1 19
<section class="container-fluid">
2 20

  
3 21

  
......
19 37
        </div>
20 38
    </div>
21 39
    <div class="row" ng-hide="result_query.length">
40
        <div class="col-lg-12 center-align">
41
            <div class="loader"></div>
42
        </div>
43

  
44

  
45
<!--
22 46
        <div class="col l12 offset-l4 center-align">
23 47
            <h5 class="red-text">No match found</h5>
24
        </div>
48
        </div> -->
25 49
    </div>
26 50

  
27 51
      <div class="row centered" ng-show="result_query.length">

Also available in: Unified diff