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

(-)a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss (+14 lines)
Lines 875-880 fieldset { Link Here
875
            padding: .3em 0;
875
            padding: .3em 0;
876
        }
876
        }
877
    }
877
    }
878
879
    div {
880
        &.help-block {
881
            display: block;
882
            margin-top: 5px;
883
            margin-bottom: 10px;
884
            color: #737373;
885
886
            li {
887
                list-style-type: unset;
888
                list-style-position: inside;
889
            }
890
        }
891
    }
878
}
892
}
879
893
880
details {
894
details {
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/modals/add_catalog_concern.inc (-1 / +3 lines)
Lines 25-33 Link Here
25
                            <label class="required" for="concern_body">Please describe your concern: </label>
25
                            <label class="required" for="concern_body">Please describe your concern: </label>
26
                            <textarea class="form-control" id="concern_body" name="concern_body" required="required" rows="15"></textarea>
26
                            <textarea class="form-control" id="concern_body" name="concern_body" required="required" rows="15"></textarea>
27
                            [%- IF CatalogConcernHelp && CatalogConcernHelp.content && CatalogConcernHelp.content.count > 0 -%]
27
                            [%- IF CatalogConcernHelp && CatalogConcernHelp.content && CatalogConcernHelp.content.count > 0 -%]
28
                            <div class="help-block">
28
                            [%- FOREACH help IN CatalogConcernHelp.content -%]
29
                            [%- FOREACH help IN CatalogConcernHelp.content -%]
29
                            <p id="helpBlock" class="help-block">[%- help.content | $raw -%]</p>
30
                                [%- help.content | $raw -%]
30
                            [%- END -%]
31
                            [%- END -%]
32
                            </div>
31
                            [%- END -%]
33
                            [%- END -%]
32
                            <div class="hidden" id="concern_template">
34
                            <div class="hidden" id="concern_template">
33
                            [%- IF CatalogConcernTemplate && CatalogConcernTemplate.content && CatalogConcernTemplate.content.count > 0 -%]
35
                            [%- IF CatalogConcernTemplate && CatalogConcernTemplate.content && CatalogConcernTemplate.content.count > 0 -%]
(-)a/koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss (-7 / +9 lines)
Lines 148-160 textarea { Link Here
148
    width: 50%;
148
    width: 50%;
149
}
149
}
150
150
151
.help-block {
152
    display: block;
153
    margin-top: 5px;
154
    margin-bottom: 10px;
155
    color: #737373;
156
}
157
158
legend {
151
legend {
159
    color: #727272;
152
    color: #727272;
160
    font-size: 110%;
153
    font-size: 110%;
Lines 997-1002 fieldset { Link Here
997
        }
990
        }
998
    }
991
    }
999
992
993
    div {
994
        &.help-block {
995
            display: block;
996
            margin-top: 5px;
997
            margin-bottom: 10px;
998
            color: #737373;
999
        }
1000
    }
1001
1000
    &.action {
1002
    &.action {
1001
        border: 0;
1003
        border: 0;
1002
        clear: both;
1004
        clear: both;
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/includes/modals/catalog_concern.inc (-2 / +3 lines)
Lines 22-30 Link Here
22
                        <label for="concern_body">Please describe your concerns: </label>
22
                        <label for="concern_body">Please describe your concerns: </label>
23
                        <textarea class="form-control" name="concern_body" id="concern_body" aria-describedby="helpBlock" required="required" rows="15"></textarea>
23
                        <textarea class="form-control" name="concern_body" id="concern_body" aria-describedby="helpBlock" required="required" rows="15"></textarea>
24
                        [%- IF CatalogConcernHelp && CatalogConcernHelp.content && CatalogConcernHelp.content.count > 0 -%]
24
                        [%- IF CatalogConcernHelp && CatalogConcernHelp.content && CatalogConcernHelp.content.count > 0 -%]
25
                        <div class="help-block">
25
                        [%- FOREACH help IN CatalogConcernHelp.content -%]
26
                        [%- FOREACH help IN CatalogConcernHelp.content -%]
26
                        <p id="helpBlock" class="help-block">[%- help.content | $raw -%]</p>
27
                            [%- help.content | $raw -%]
27
                        [%- END -%]
28
                        [%- END -%]
29
                        </div>
28
                        [%- END -%]
30
                        [%- END -%]
29
                        <div id="concern_template" style="display: none;">
31
                        <div id="concern_template" style="display: none;">
30
                        [%- IF CatalogConcernTemplate && CatalogConcernTemplate.content && CatalogConcernTemplate.content.count > 0 -%]
32
                        [%- IF CatalogConcernTemplate && CatalogConcernTemplate.content && CatalogConcernTemplate.content.count > 0 -%]
31
- 

Return to bug 31028