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

(-)a/koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss (-2 / +21 lines)
Lines 716-721 fieldset { Link Here
716
            font-weight: bold;
716
            font-weight: bold;
717
        }
717
        }
718
718
719
        div.label {
720
            display: inline-block;
721
            width: 9rem;
722
            margin-right: 1rem;
723
            float: none;
724
        }
725
719
        label,
726
        label,
720
        .label {
727
        .label {
721
            float: left;
728
            float: left;
Lines 725-734 fieldset { Link Here
725
            width: 9rem;
732
            width: 9rem;
726
        }
733
        }
727
734
735
        label.checkbox-label {
736
            float: none;
737
            margin-right: 0;
738
            font-weight: normal;
739
            text-align: left;
740
            width: auto;
741
        }
742
728
        label {
743
        label {
729
            &.error {
744
            &.error {
730
                color: #C00;
745
                color: #C00;
731
                float: none;
746
                float: none;
747
                display: inline;
732
                font-style: italic;
748
                font-style: italic;
733
                font-weight: normal;
749
                font-weight: normal;
734
                margin-left: 1rem;
750
                margin-left: 1rem;
Lines 766-771 fieldset { Link Here
766
            }
782
            }
767
        }
783
        }
768
784
785
769
        li {
786
        li {
770
            clear: left;
787
            clear: left;
771
            float: left;
788
            float: left;
Lines 774-787 fieldset { Link Here
774
            width: 100%;
791
            width: 100%;
775
792
776
            &.lradio {
793
            &.lradio {
777
                padding-left: 8.5em;
778
                width: auto;
794
                width: auto;
779
795
780
                label {
796
                label {
781
                    float: none;
797
                    float: none;
782
                    margin: 0 0 0 1em;
798
                    margin: 0;
783
                    width: auto;
799
                    width: auto;
784
                }
800
                }
801
                input {
802
                    margin-right: 1rem;
803
                }
785
            }
804
            }
786
        }
805
        }
787
806
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-memberentry.tt (-4 / +10 lines)
Lines 373-378 Link Here
373
373
374
                                        [% UNLESS hidden.defined('sex') %]
374
                                        [% UNLESS hidden.defined('sex') %]
375
                                            <li class="lradio">
375
                                            <li class="lradio">
376
                                                <div class="label"></div>
376
                                                <label for="sex-female" class="radio inline"><span class="patronsex-female">Female:</span></label>
377
                                                <label for="sex-female" class="radio inline"><span class="patronsex-female">Female:</span></label>
377
                                                [% IF borrower.sex == 'F' %]
378
                                                [% IF borrower.sex == 'F' %]
378
                                                    <input type="radio" name="borrower_sex" id="sex-female" value="F" checked="checked" />
379
                                                    <input type="radio" name="borrower_sex" id="sex-female" value="F" checked="checked" />
Lines 871-881 Link Here
871
                                    </div>
872
                                    </div>
872
873
873
                                    <ol>
874
                                    <ol>
874
                                        <li><label for="borrower_password" class="[% required.password | html %]">Password</label>
875
                                        <li><label for="password" class="[% required.password | html %]">Password:</label>
875
                                            <input type="password" name="borrower_password" id="password" class="[% required.password | html %]" />
876
                                            <input type="password" name="borrower_password" id="password" class="[% required.password | html %]" />
876
                                            <div class="required_label [% required.password | html %]">Required</div>
877
                                            <div class="required_label [% required.password | html %]">Required</div>
877
                                        </li>
878
                                        </li>
878
                                        <li><label for="borrower_password2" class="[% required.password | html %]">Confirm password</label>
879
                                        <li><label for="password2" class="[% required.password | html %]">Confirm password:</label>
879
                                            <input type="password" name="borrower_password2" id="password2" />
880
                                            <input type="password" name="borrower_password2" id="password2" />
880
                                            <div class="required_label [% required.password | html %]">Required</div>
881
                                            <div class="required_label [% required.password | html %]">Required</div>
881
                                        </li>
882
                                        </li>
Lines 958-964 Link Here
958
                                    <legend>GDPR consent</legend>
959
                                    <legend>GDPR consent</legend>
959
                                    <ol>
960
                                    <ol>
960
                                    <li>
961
                                    <li>
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>
962
                                        <div class="label"></div>
963
                                        <label class="checkbox-label" for="borrower_gdpr_proc_consent">
964
                                            <input type="checkbox" name="borrower_gdpr_proc_consent" id="borrower_gdpr_proc_consent" class="required" value="agreed">
965
                                            I agree with your processing of my personal data as outlined in the <a target="_blank" href="[% Koha.Preference('PrivacyPolicyURL') | url %]">privacy policy</a>.
966
                                        </label>
967
                                        <label class="error" for="borrower_gdpr_proc_consent" style="display: none;"></label>
968
                                        <div class="required_label required">Required</div>
962
                                    </li>
969
                                    </li>
963
                                    </ol>
970
                                    </ol>
964
                                </fieldset>
971
                                </fieldset>
965
- 

Return to bug 28934