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 24-32 Link Here
24
                            <label class="required" for="concern_body">Please describe your concern: </label>
24
                            <label class="required" for="concern_body">Please describe your concern: </label>
25
                            <textarea class="form-control" id="concern_body" name="concern_body" required="required" rows="15"></textarea>
25
                            <textarea class="form-control" id="concern_body" name="concern_body" required="required" rows="15"></textarea>
26
                            [%- IF CatalogConcernHelp && CatalogConcernHelp.content && CatalogConcernHelp.content.count > 0 -%]
26
                            [%- IF CatalogConcernHelp && CatalogConcernHelp.content && CatalogConcernHelp.content.count > 0 -%]
27
                            <div class="help-block">
27
                            [%- FOREACH help IN CatalogConcernHelp.content -%]
28
                            [%- FOREACH help IN CatalogConcernHelp.content -%]
28
                            <p id="helpBlock" class="help-block">[%- help.content | $raw -%]</p>
29
                                [%- help.content | $raw -%]
29
                            [%- END -%]
30
                            [%- END -%]
31
                            </div>
30
                            [%- END -%]
32
                            [%- END -%]
31
                            <div class="hidden" id="concern_template">
33
                            <div class="hidden" id="concern_template">
32
                            [%- IF CatalogConcernTemplate && CatalogConcernTemplate.content && CatalogConcernTemplate.content.count > 0 -%]
34
                            [%- IF CatalogConcernTemplate && CatalogConcernTemplate.content && CatalogConcernTemplate.content.count > 0 -%]
(-)a/koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss (-7 / +9 lines)
Lines 147-159 textarea { Link Here
147
    width: 50%;
147
    width: 50%;
148
}
148
}
149
149
150
.help-block {
151
    display: block;
152
    margin-top: 5px;
153
    margin-bottom: 10px;
154
    color: #737373;
155
}
156
157
legend {
150
legend {
158
    color: #727272;
151
    color: #727272;
159
    font-size: 110%;
152
    font-size: 110%;
Lines 991-996 fieldset { Link Here
991
        }
984
        }
992
    }
985
    }
993
986
987
    div {
988
        &.help-block {
989
            display: block;
990
            margin-top: 5px;
991
            margin-bottom: 10px;
992
            color: #737373;
993
        }
994
    }
995
994
    &.action {
996
    &.action {
995
        border: 0;
997
        border: 0;
996
        clear: both;
998
        clear: both;
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/includes/modals/catalog_concern.inc (-2 / +3 lines)
Lines 21-29 Link Here
21
                        <label for="concern_body">Please decribe your concerns: </label>
21
                        <label for="concern_body">Please decribe your concerns: </label>
22
                        <textarea class="form-control" name="concern_body" id="concern_body" aria-describedby="helpBlock" required="required" rows="15"></textarea>
22
                        <textarea class="form-control" name="concern_body" id="concern_body" aria-describedby="helpBlock" required="required" rows="15"></textarea>
23
                        [%- IF CatalogConcernHelp && CatalogConcernHelp.content && CatalogConcernHelp.content.count > 0 -%]
23
                        [%- IF CatalogConcernHelp && CatalogConcernHelp.content && CatalogConcernHelp.content.count > 0 -%]
24
                        <div class="help-block">
24
                        [%- FOREACH help IN CatalogConcernHelp.content -%]
25
                        [%- FOREACH help IN CatalogConcernHelp.content -%]
25
                        <p id="helpBlock" class="help-block">[%- help.content | $raw -%]</p>
26
                            [%- help.content | $raw -%]
26
                        [%- END -%]
27
                        [%- END -%]
28
                        </div>
27
                        [%- END -%]
29
                        [%- END -%]
28
                        <div class="hidden" id="concern_template">
30
                        <div class="hidden" id="concern_template">
29
                        [%- IF CatalogConcernTemplate && CatalogConcernTemplate.content && CatalogConcernTemplate.content.count > 0 -%]
31
                        [%- IF CatalogConcernTemplate && CatalogConcernTemplate.content && CatalogConcernTemplate.content.count > 0 -%]
30
- 

Return to bug 31028