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

(-)a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss (-2 / +2 lines)
Lines 4688-4694 div .suggestion_note { Link Here
4688
    }
4688
    }
4689
}
4689
}
4690
4690
4691
#consentButtons {
4691
.consentButtons {
4692
    flex-grow: 1;
4692
    flex-grow: 1;
4693
    margin-top: 10px;
4693
    margin-top: 10px;
4694
    text-align: left;
4694
    text-align: left;
Lines 4829-4835 div .suggestion_note { Link Here
4829
@import "forms";
4829
@import "forms";
4830
4830
4831
@media only screen and ( min-width: 608px ) {
4831
@media only screen and ( min-width: 608px ) {
4832
    #consentButtons {
4832
    .consentButtons {
4833
        text-align: right;
4833
        text-align: right;
4834
        white-space: nowrap;
4834
        white-space: nowrap;
4835
    }
4835
    }
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/intranet-bottom.inc (-2 / +2 lines)
Lines 92-98 Link Here
92
                    [%- END -%]
92
                    [%- END -%]
93
                </div>
93
                </div>
94
            [% END %]
94
            [% END %]
95
            <div id="consentButtons">
95
            <div class="consentButtons">
96
                [% IF ( JSConsents.all('staffConsent').size ) %]
96
                [% IF ( JSConsents.all('staffConsent').size ) %]
97
                    <button type="button" class="btn btn-primary consentAcceptAll">Accept all cookies</button>
97
                    <button type="button" class="btn btn-primary consentAcceptAll">Accept all cookies</button>
98
                [% END %]
98
                [% END %]
Lines 131-137 Link Here
131
                        </div>
131
                        </div>
132
                    </div>
132
                    </div>
133
                    <div class="modal-footer">
133
                    <div class="modal-footer">
134
                        <div id="consentButtons">
134
                        <div class="consentButtons">
135
                            <button type="button" class="btn btn-primary consentAcceptEssential">Accept essential cookies</button>
135
                            <button type="button" class="btn btn-primary consentAcceptEssential">Accept essential cookies</button>
136
                            [% IF ( JSConsents.all('staffConsent').size ) %]
136
                            [% IF ( JSConsents.all('staffConsent').size ) %]
137
                                <button type="button" class="btn btn-primary consentAcceptAll">Accept all cookies</button>
137
                                <button type="button" class="btn btn-primary consentAcceptAll">Accept all cookies</button>
(-)a/koha-tmpl/opac-tmpl/bootstrap/css/src/_responsive.scss (-1 / +1 lines)
Lines 279-285 Link Here
279
279
280
    }
280
    }
281
281
282
    #consentButtons {
282
    .consentButtons {
283
        text-align: right;
283
        text-align: right;
284
        white-space: nowrap;
284
        white-space: nowrap;
285
    }
285
    }
(-)a/koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss (-1 / +1 lines)
Lines 2938-2944 $star-selected: #EDB867; Link Here
2938
    }
2938
    }
2939
}
2939
}
2940
2940
2941
#consentButtons {
2941
.consentButtons {
2942
    flex-grow: 1;
2942
    flex-grow: 1;
2943
    margin-top: 10px;
2943
    margin-top: 10px;
2944
    text-align: left;
2944
    text-align: left;
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/includes/masthead.inc (-3 / +2 lines)
Lines 468-474 Link Here
468
                        [% PROCESS koha_news_block news => CookieConsentBar %]
468
                        [% PROCESS koha_news_block news => CookieConsentBar %]
469
                    </div>
469
                    </div>
470
                [% END %]
470
                [% END %]
471
                <div id="consentButtons">
471
                <div class="consentButtons">
472
                    [% IF ( JSConsents.all('opacConsent').size ) %]
472
                    [% IF ( JSConsents.all('opacConsent').size ) %]
473
                        <button type="button" class="btn btn-primary consentAcceptAll">Accept all cookies</button>
473
                        <button type="button" class="btn btn-primary consentAcceptAll">Accept all cookies</button>
474
                    [% END %]
474
                    [% END %]
Lines 505-511 Link Here
505
                        </div>
505
                        </div>
506
                    </div>
506
                    </div>
507
                    <div class="modal-footer">
507
                    <div class="modal-footer">
508
                        <div id="consentButtons">
508
                        <div class="consentButtons">
509
                            <button type="button" class="btn btn-primary consentAcceptEssential">Accept essential cookies</button>
509
                            <button type="button" class="btn btn-primary consentAcceptEssential">Accept essential cookies</button>
510
                            [% IF ( JSConsents.all('opacConsent').size ) %]
510
                            [% IF ( JSConsents.all('opacConsent').size ) %]
511
                                <button type="button" class="btn btn-primary consentAcceptAll">Accept all cookies</button>
511
                                <button type="button" class="btn btn-primary consentAcceptAll">Accept all cookies</button>
512
- 

Return to bug 36909