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

(-)a/koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss (+13 lines)
Lines 16-21 Link Here
16
16
17
    #sortsubmit {
17
    #sortsubmit {
18
        display: inline;
18
        display: inline;
19
        padding-left: 0;
20
        padding-right: 0;
19
    }
21
    }
20
}
22
}
21
23
Lines 1337-1342 nav { Link Here
1337
    margin: .3em 0;
1339
    margin: .3em 0;
1338
}
1340
}
1339
1341
1342
.ui-widget-content {
1343
    a {
1344
        &:link,
1345
        &:visited {
1346
            &.btn {
1347
                color: #FFF;
1348
            }
1349
        }
1350
    }
1351
}
1352
1340
#social_networks {
1353
#social_networks {
1341
    margin-top: .5em;
1354
    margin-top: .5em;
1342
1355
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt (-2 / +2 lines)
Lines 796-804 Link Here
796
                                    <span class="email_notifications">
796
                                    <span class="email_notifications">
797
                                        [% IF ( loggedinusername ) %]
797
                                        [% IF ( loggedinusername ) %]
798
                                            [% IF ( subscription.hasalert ) %]
798
                                            [% IF ( subscription.hasalert ) %]
799
                                                <span>You have subscribed to email notification on new issues. </span><a style="color:#000;" class="btn" title="Cancel email notification" href="/cgi-bin/koha/opac-alert-subscribe.pl?op=cancel&amp;subscriptionid=[% subscription.subscriptionid | html %]&amp;biblionumber=[% subscription.biblionumber | html %]">Cancel email notification</a>
799
                                                <span>You have subscribed to email notification on new issues. </span><a class="btn btn-secondary" title="Cancel email notification" href="/cgi-bin/koha/opac-alert-subscribe.pl?op=cancel&amp;subscriptionid=[% subscription.subscriptionid | html %]&amp;biblionumber=[% subscription.biblionumber | html %]">Cancel email notification</a>
800
                                            [% ELSE %]
800
                                            [% ELSE %]
801
                                                <a style="color:#000;" class="btn" title="Subscribe to email notification on new issues" href="/cgi-bin/koha/opac-alert-subscribe.pl?subscriptionid=[% subscription.subscriptionid | html %]&amp;biblionumber=[% subscription.biblionumber | html %]">Subscribe to email notification on new issues</a>
801
                                                <a class="btn btn-secondary" title="Subscribe to email notification on new issues" href="/cgi-bin/koha/opac-alert-subscribe.pl?subscriptionid=[% subscription.subscriptionid | html %]&amp;biblionumber=[% subscription.biblionumber | html %]">Subscribe to email notification on new issues</a>
802
                                            [% END %]
802
                                            [% END %]
803
                                        [% ELSE %]
803
                                        [% ELSE %]
804
                                            <span>You must log in if you want to subscribe to email notification on new issues</span>
804
                                            <span>You must log in if you want to subscribe to email notification on new issues</span>
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-results.tt (-4 / +3 lines)
Lines 177-183 Link Here
177
                                        </div>
177
                                        </div>
178
                                        [% UNLESS tag %]
178
                                        [% UNLESS tag %]
179
                                            <div class="sort_by col-sm-auto">
179
                                            <div class="sort_by col-sm-auto">
180
                                                <div class="text-right">
181
                                                <select id="sort_by" class="resort form-control form-control-sm" name="sort_by">
180
                                                <select id="sort_by" class="resort form-control form-control-sm" name="sort_by">
182
                                                    [% INCLUDE 'resort_form.inc' %]
181
                                                    [% INCLUDE 'resort_form.inc' %]
183
                                                </select>
182
                                                </select>
Lines 199-207 Link Here
199
                                                        [% IF results_per_page == '100' %]<option value="100" selected="selected">100</option>[% ELSE %]<option value="100">100</option>[% END %]
198
                                                        [% IF results_per_page == '100' %]<option value="100" selected="selected">100</option>[% ELSE %]<option value="100">100</option>[% END %]
200
                                                    </select>
199
                                                    </select>
201
                                                [% END # IF Koha.Preference('OPACnumSearchResultsDropdown') %]
200
                                                [% END # IF Koha.Preference('OPACnumSearchResultsDropdown') %]
202
201
                                            </div> <!-- /.sort_by -->
203
                                                <input type="submit" class="btn btn-sm clearfix" id="sortsubmit" value="Go" />
202
                                            <div id="sortsubmit" class="sort_by col-auto">
204
                                                </div>
203
                                                <input type="submit" class="btn btn-primary btn-sm clearfix" value="Go" />
205
                                            </div> <!-- /.sort_by -->
204
                                            </div> <!-- /.sort_by -->
206
                                        [% END # /UNLESS tag %]
205
                                        [% END # /UNLESS tag %]
207
                                    </div> <!-- / #toolbar -->
206
                                    </div> <!-- / #toolbar -->
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-shelves.tt (-2 / +1 lines)
Lines 313-319 Link Here
313
                                            </optgroup>
313
                                            </optgroup>
314
                                        </select>
314
                                        </select>
315
315
316
                                        <input type="submit" class="btn btn-sm" id="sort-submit" value="Resort list" />
316
                                        <input type="submit" class="btn btn-primary btn-sm" id="sort-submit" value="Resort list" />
317
                                    </form> <!-- /#sorting-form -->
317
                                    </form> <!-- /#sorting-form -->
318
318
319
                                </div> <!-- / #toolbar -->
319
                                </div> <!-- / #toolbar -->
320
- 

Return to bug 26519