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

(-)a/koha-tmpl/opac-tmpl/bootstrap/css/src/_responsive.scss (+14 lines)
Lines 95-100 Link Here
95
95
96
            li {
96
            li {
97
                padding-bottom: .5em;
97
                padding-bottom: .5em;
98
99
                &.lradio {
100
                    padding-left: 0;
101
102
                    label {
103
                        text-align: left;
104
                    }
105
                }
98
            }
106
            }
99
107
100
            ol {
108
            ol {
Lines 200-205 Link Here
200
        text-align: center;
208
        text-align: center;
201
    }
209
    }
202
210
211
    .required_label {
212
        &.required {
213
            margin: 0;
214
        }
215
    }
216
203
    #searchsubmit {
217
    #searchsubmit {
204
        font-weight: bold;
218
        font-weight: bold;
205
    }
219
    }
(-)a/koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss (-30 / +18 lines)
Lines 642-658 th { Link Here
642
    }
642
    }
643
}
643
}
644
644
645
div {
645
.required_label {
646
    &.required_label {
646
    display: none;
647
        display: none;
648
647
649
        &.required {
648
    &.required {
650
            color: #C00;
649
        color: #C00;
651
            display: block;
650
        display: block;
652
            font-size: 95%;
651
        font-size: 95%;
653
            margin-left: 10rem;
652
        margin-left: 10rem;
654
            margin-top: 3px;
653
        margin-top: 3px;
655
        }
656
    }
654
    }
657
}
655
}
658
656
Lines 735-745 fieldset { Link Here
735
                text-align: left;
733
                text-align: left;
736
                width: auto;
734
                width: auto;
737
            }
735
            }
738
            &.lradio {
739
                float: none;
740
                margin: inherit;
741
                width: auto;
742
            }
743
        }
736
        }
744
737
745
        fieldset {
738
        fieldset {
Lines 750-769 fieldset { Link Here
750
        ol {
743
        ol {
751
            list-style-type: none;
744
            list-style-type: none;
752
            padding: 1em 1em 0 1em;
745
            padding: 1em 1em 0 1em;
753
754
            &.lradio {
755
                label {
756
                    float: none;
757
                    margin-right: 0;
758
                    width: auto;
759
760
                    &.lradio {
761
                        float: left;
762
                        margin-right: 1em;
763
                        width: 12em;
764
                    }
765
                }
766
            }
767
        }
746
        }
768
747
769
        li {
748
        li {
Lines 774-786 fieldset { Link Here
774
            width: 100%;
753
            width: 100%;
775
754
776
            &.lradio {
755
            &.lradio {
777
                padding-left: 8.5em;
756
                padding-left: 9rem;
778
                width: auto;
757
                width: auto;
779
758
780
                label {
759
                label {
781
                    float: none;
760
                    float: none;
782
                    margin: 0 0 0 1em;
761
                    margin: 0 0 0 1em;
762
                    text-align: left;
783
                    width: auto;
763
                    width: auto;
764
765
                    &.error {
766
                        float: right;
767
                    }
768
                }
769
770
                .required_label {
771
                    margin-left: 1em;
784
                }
772
                }
785
            }
773
            }
786
        }
774
        }
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-memberentry.tt (-4 / +7 lines)
Lines 957-965 Link Here
957
                                <fieldset class="rows" id="memberentry_gdpr_consent">
957
                                <fieldset class="rows" id="memberentry_gdpr_consent">
958
                                    <legend>GDPR consent</legend>
958
                                    <legend>GDPR consent</legend>
959
                                    <ol>
959
                                    <ol>
960
                                    <li>
960
                                        <li class="lradio">
961
                                        <label></label><span><input type="checkbox" name="borrower_gdpr_proc_consent" value="agreed"> I agree with your processing of my personal data as outlined in the <a target="_blank" href="[% Koha.Preference('PrivacyPolicyURL') | url %]">privacy policy</a>. <div class="required">Required</div></span>
961
                                            <label>
962
                                    </li>
962
                                                <input type="checkbox" name="borrower_gdpr_proc_consent" value="agreed" class="required" required="required" />
963
                                                I agree with your processing of my personal data as outlined in the <a target="_blank" href="[% Koha.Preference('PrivacyPolicyURL') | url %]">privacy policy</a>
964
                                            </label>
965
                                            <div class="required_label required">Required</div>
966
                                        </li>
963
                                    </ol>
967
                                    </ol>
964
                                </fieldset>
968
                                </fieldset>
965
                            </div> <!-- /.col -->
969
                            </div> <!-- /.col -->
966
- 

Return to bug 28934