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

(-)a/koha-tmpl/intranet-tmpl/prog/css/reports.css (+75 lines)
Line 0 Link Here
1
#sql {
2
    height: 9em;
3
    width: 90%;
4
}
5
6
#update_sql .modal-dialog {
7
    width: 80%;
8
}
9
10
ins {
11
    background-color: #e6ffe6;
12
}
13
14
del {
15
    background-color: #ffe6e6;
16
}
17
18
#col1,
19
#col2 {
20
    float: left;
21
    width: 45%;
22
}
23
24
#col1 ins,
25
#col2 del {
26
    display: none;
27
}
28
29
.show_sql {
30
    font-family: monospace;
31
}
32
33
.send_to_item_mod {
34
    background-color: #EBF3FF;
35
    border: 1px solid #88b0e8;
36
    border-radius: 5px;
37
    display: inline-block;
38
    font-size: 75%;
39
    margin: 3px 5px;
40
    padding: 3px 5px;
41
    white-space: nowrap;
42
}
43
44
.filter {
45
    background-color: #EBF3FF;
46
    border-radius: 5px;
47
    display: inline-block;
48
    font-size: 85%;
49
    margin: 3px;
50
    padding: 0 1em;
51
    white-space: nowrap;
52
}
53
54
.filter span,
55
.filter a {
56
    padding: .5em 0;
57
}
58
59
.filter span {
60
    border-right: 1px solid #A4BEDD;
61
    display: inline-block;
62
    margin-right: .5em;
63
    padding-right: .5em;
64
}
65
66
.clear_filter {
67
    display: inline-block;
68
    font-weight: bold;
69
    margin-left: .5em;
70
    padding-left: 1em;
71
}
72
73
.clear_filter i {
74
    color: #C00;
75
}
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt (-20 / +18 lines)
Lines 31-56 Link Here
31
[%- END -%]</title>
31
[%- END -%]</title>
32
32
33
[% INCLUDE 'doc-head-close.inc' %]
33
[% INCLUDE 'doc-head-close.inc' %]
34
<style type="text/css">
35
    #sql { width: 90%; height: 9em;}
36
    #update_sql .modal-dialog { width: 80%; }
37
    ins { background-color: #e6ffe6; }
38
    del { background-color: #ffe6e6; }
39
    #col1, #col2 { width:45%; float:left; }
40
    #col1 ins, #col2 del { display: none; }
41
    .show_sql { font-family: monospace; }
42
    .send_to_item_mod {
43
        background-color: #EBF3FF;
44
        border: 1px solid #88b0e8;
45
        border-radius: 5px;
46
        display: inline-block;
47
        font-size: 75%;
48
        margin: 3px 5px;
49
        padding: 3px 5px;
50
        white-space: nowrap;
51
    }
52
</style>
53
[% IF ( saved1 ) %]
34
[% IF ( saved1 ) %]
35
    [% Asset.css("css/reports.css") %]
54
    [% Asset.css("css/datatables.css") %]
36
    [% Asset.css("css/datatables.css") %]
55
[% END %]
37
[% END %]
56
</head>
38
</head>
Lines 145-150 canned reports and writing custom SQL reports.</p> Link Here
145
[% IF ( saved1 ) %]
127
[% IF ( saved1 ) %]
146
[% IF ( savedreports ) %]<h1>Saved reports</h1>
128
[% IF ( savedreports ) %]<h1>Saved reports</h1>
147
129
130
[% IF ( filters.date || filters.author || filters.keyword ) %]
131
    <p>Filtered by:
132
        <span class="filter">
133
            [% IF ( filters.date ) %]
134
                <span class="filter_date"><strong>Date:</strong> [% filters.date %]</span>
135
            [% END %]
136
            [% IF ( filters.author ) %]
137
                <span class="filter_author"><strong>Author:</strong> [% filters.author %]</span>
138
            [% END %]
139
            [% IF ( filters.keyword ) %]
140
                <span class="filter_keyword"><strong>Keyword:</strong> [% filters.keyword %]</span>
141
            [% END %]
142
            <a class="clear_filter" href="/cgi-bin/koha/reports/guided_reports.pl?phase=Use%20saved&clear_filters=1"><i class="fa fa-remove"></i> Clear</a>
143
        </span>
144
    </p>
145
[% END %]
146
148
<div id="tabs" class="toptabs">
147
<div id="tabs" class="toptabs">
149
    <ul>
148
    <ul>
150
        <li><a href="#reports">All</a></li>
149
        <li><a href="#reports">All</a></li>
151
- 

Return to bug 21132