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

(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt (+21 lines)
Lines 343-348 Link Here
343
                                </ul>
343
                                </ul>
344
                            </div>
344
                            </div>
345
                        [% END # / IF MARCURLS %]
345
                        [% END # / IF MARCURLS %]
346
347
                        [% IF (OPACShowOpenURL && OpenURLResolverURL && ocoins) %]
348
                            [%# Build OpenURL image location %]
349
                            [% IF (OpenURLImageLocation && !OpenURLImageLocation.match('^https?://')) %]
350
                                [% openurlimagelocation = "$interface/$theme/images/$OpenURLImageLocation" %]
351
                            [% ELSE %]
352
                                [% openurlimagelocation = "$OpenURLImageLocation" %]
353
                            [% END %]
354
355
                            <span class="results_summary">
356
                                <a class="OpenURL" href="[% OpenURLResolverURL %]?[% ocoins %]" title="[% OpenURLText %]">
357
                                [% IF openurlimagelocation %]
358
                                    <img src="[% openurlimagelocation %]" />
359
                                [% ELSIF OpenURLText %]
360
                                    [% OpenURLText %]
361
                                [% ELSE %]
362
                                    OpenURL
363
                                [% END %]
364
                                </a>
365
                            </span>
366
                        [% END # / IF (OPACShowOpenURL && OpenURLResolverURL && ocoins) %]
346
                    [% END # / IF OPACXSLTDetailsDisplay %]
367
                    [% END # / IF OPACXSLTDetailsDisplay %]
347
368
348
                    [% IF ( AuthorisedValueImages && authorised_value_images ) %]
369
                    [% IF ( AuthorisedValueImages && authorised_value_images ) %]
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-results.tt (+17 lines)
Lines 167-172 Link Here
167
167
168
                                <!-- TABLE RESULTS START -->
168
                                <!-- TABLE RESULTS START -->
169
                                <table class="table table-striped">
169
                                <table class="table table-striped">
170
                                    [%# Build OpenURL image location %]
171
                                    [% IF (OpenURLImageLocation && !OpenURLImageLocation.match('^https?://')) %]
172
                                        [% openurlimagelocation = "$interface/$theme/images/$OpenURLImageLocation" %]
173
                                    [% ELSE %]
174
                                        [% openurlimagelocation = "$OpenURLImageLocation" %]
175
                                    [% END %]
170
176
171
                                    <!-- Actual Search Results -->
177
                                    <!-- Actual Search Results -->
172
                                    [% FOREACH SEARCH_RESULT IN SEARCH_RESULTS %]
178
                                    [% FOREACH SEARCH_RESULT IN SEARCH_RESULTS %]
Lines 318-323 Link Here
318
                                                    [% ELSE %]
324
                                                    [% ELSE %]
319
                                                        &nbsp;
325
                                                        &nbsp;
320
                                                    [% END %]
326
                                                    [% END %]
327
                                                    [% IF (SEARCH_RESULT.ShowOpenURL && OpenURLResolverURL && SEARCH_RESULT.coins) %]
328
                                                        <a class="OpenURL" href="[% OpenURLResolverURL %]?[% SEARCH_RESULT.coins %]" title="[% OpenURLText %]">
329
                                                        [% IF openurlimagelocation %]
330
                                                            <img src="[% openurlimagelocation %]" />
331
                                                        [% ELSIF OpenURLText %]
332
                                                            [% OpenURLText %]
333
                                                        [% ELSE %]
334
                                                            OpenURL
335
                                                        [% END %]
336
                                                        </a>
337
                                                    [% END %]
321
338
322
                                                    <span class="results_summary publisher">
339
                                                    <span class="results_summary publisher">
323
                                                        <span class="label">Publication:</span>
340
                                                        <span class="label">Publication:</span>
(-)a/koha-tmpl/opac-tmpl/bootstrap/less/opac.less (-1 / +4 lines)
Lines 2392-2395 a.reviewlink:visited { Link Here
2392
    }
2392
    }
2393
}
2393
}
2394
2394
2395
a.OpenURL img {
2396
    vertical-align: middle;
2397
}
2398
2395
@import "responsive.less";
2399
@import "responsive.less";
2396
- 

Return to bug 8995