View | Details | Raw Unified | Return to bug 30437
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss (+13 lines)
Lines 4786-4791 div .suggestion_note { Link Here
4786
    }
4786
    }
4787
}
4787
}
4788
4788
4789
.koha-page-loader {
4790
    position: absolute;
4791
    top: 0;
4792
    bottom: 0;
4793
    left: 0;
4794
    right: 0;
4795
    display: none;
4796
    text-align: center;
4797
    width: 100%;
4798
    padding-top: 125px;
4799
    background-color: rgba(255, 255, 255, 0.7);
4800
}
4801
4789
@media (max-width: 768px) {
4802
@media (max-width: 768px) {
4790
    .navbar-nav {
4803
    .navbar-nav {
4791
        li {
4804
        li {
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/svg-loader.inc (+4 lines)
Line 0 Link Here
1
<div class="koha-page-loader">
2
        <h3>Loading page...</h3>
3
        <img src="[% interface | html %]/[% theme | html %]/img/koha-svg-loader.svg" alt="loader">
4
</div>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation-home.tt (-2 / +2 lines)
Lines 78-84 Link Here
78
                        <a class="circ-button" href="/cgi-bin/koha/circ/view_holdsqueue.pl"><i class="fa fa-tasks"></i> Holds queue</a>
78
                        <a class="circ-button" href="/cgi-bin/koha/circ/view_holdsqueue.pl"><i class="fa fa-tasks"></i> Holds queue</a>
79
                    </li>
79
                    </li>
80
                    <li>
80
                    <li>
81
                        <a class="circ-button" href="/cgi-bin/koha/circ/pendingreserves.pl"><i class="fa fa-hand-grab-o"></i> Holds to pull</a>
81
                        <a class="circ-button koha-svg-loader" href="/cgi-bin/koha/circ/pendingreserves.pl"><i class="fa fa-hand-grab-o"></i> Holds to pull</a>
82
                    </li>
82
                    </li>
83
                    <li>
83
                    <li>
84
                        <a class="circ-button" href="/cgi-bin/koha/circ/waitingreserves.pl"><i class="fa fa-calendar"></i> Holds awaiting pickup</a>
84
                        <a class="circ-button" href="/cgi-bin/koha/circ/waitingreserves.pl"><i class="fa fa-calendar"></i> Holds awaiting pickup</a>
Lines 171-175 Link Here
171
                    </div>
171
                    </div>
172
            </div>
172
            </div>
173
        </div>
173
        </div>
174
174
[% INCLUDE 'svg-loader.inc' %]
175
[% INCLUDE 'intranet-bottom.inc' %]
175
[% INCLUDE 'intranet-bottom.inc' %]
(-)a/koha-tmpl/intranet-tmpl/prog/img/koha-svg-loader.svg (+17 lines)
Line 0 Link Here
1
<!-- By Sam Herbert (@sherb), for everyone. More @ http://goo.gl/7AJzbL -->
2
<svg width="80" height="80" viewBox="0 0 38 38" xmlns="http://www.w3.org/2000/svg" stroke="#cecece">
3
    <g fill="none" fill-rule="evenodd">
4
        <g transform="translate(1 1)" stroke-width="2">
5
            <circle stroke-opacity=".5" cx="18" cy="18" r="18"/>
6
            <path d="M36 18c0-9.94-8.06-18-18-18">
7
                <animateTransform
8
                    attributeName="transform"
9
                    type="rotate"
10
                    from="0 18 18"
11
                    to="360 18 18"
12
                    dur="1s"
13
                    repeatCount="indefinite"/>
14
            </path>
15
        </g>
16
    </g>
17
</svg>
(-)a/koha-tmpl/intranet-tmpl/prog/js/staff-global.js (-1 / +3 lines)
Lines 172-177 $(document).ready(function() { Link Here
172
    $("#bookbag_form a[href*='detail.pl?']").click(function(){
172
    $("#bookbag_form a[href*='detail.pl?']").click(function(){
173
        resetSearchContext();
173
        resetSearchContext();
174
    });
174
    });
175
    $('.koha-svg-loader').click( function() {
176
        $('.koha-page-loader').show();
177
    });
175
178
176
});
179
});
177
180
178
- 

Return to bug 30437