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

(-)a/koha-tmpl/intranet-tmpl/prog/css/reports.css (-1 / +25 lines)
Lines 95-98 fieldset.rows .chart-column-conf label { Link Here
95
95
96
#makechart select {
96
#makechart select {
97
    max-width: 12em;
97
    max-width: 12em;
98
}
98
}
99
100
.report_heading_id {
101
    background-color: #F3F3F3;
102
    border: 1px solid #DDD;
103
    border-radius: 5px;
104
    display: inline-block;
105
    font-size: 1.2rem;
106
    font-weight: normal;
107
    margin-left: .5em;
108
    white-space: nowrap;
109
}
110
111
.report_heading_id .report_label {
112
    display: inline-block;
113
    padding: .5em;
114
    padding-right: 0;
115
}
116
117
.report_heading_id .report_number {
118
    display: inline-block;
119
    font-weight: bold;
120
    padding: .5em;
121
    padding-left: 0;
122
}
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt (-2 / +1 lines)
Lines 899-905 Link Here
899
                [% END # /IF ( enter_params ) %]
899
                [% END # /IF ( enter_params ) %]
900
900
901
                [% IF ( execute ) %]
901
                [% IF ( execute ) %]
902
                    <h1>[% name | html %] <span id="report_id">([% id | html %])</span></h1>
902
                    <h1>[% name | html %] <span class="report_heading_id"><span class="report_label">Report number:</span> <span class="report_number">[% id | html %]</span></span></h1>
903
                    [% IF ( notes ) %]
903
                    [% IF ( notes ) %]
904
                        <p><span class="label">Notes:</span> [% notes | html %]</p>
904
                        <p><span class="label">Notes:</span> [% notes | html %]</p>
905
                    [% END %]
905
                    [% END %]
906
- 

Return to bug 29876