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

(-)a/koha-tmpl/intranet-tmpl/prog/en/css/datatables.css (-18 / +27 lines)
Lines 58-69 div.dataTables_info { Link Here
58
div.dataTables_length,
58
div.dataTables_length,
59
div.dataTables_filter {
59
div.dataTables_filter {
60
    border-left : 1px solid #FFF;
60
    border-left : 1px solid #FFF;
61
    border-right : 1px solid #AAAAAA;
61
}
62
}
62
div.dataTables_filter {
63
div.dataTables_filter {
63
    line-height : 1.9em;
64
    line-height : 1.9em;
64
}
65
}
65
div.dataTables_paginate {
66
div.dataTables_paginate {
66
    background-color : #F4F4F4;
67
    padding : 0;
67
    padding : 0;
68
}
68
}
69
69
Lines 73-114 div.dataTables_paginate { Link Here
73
    border-left : 1px solid #FFF;
73
    border-left : 1px solid #FFF;
74
    display : block;
74
    display : block;
75
    float : left;
75
    float : left;
76
    line-height:1.6em;
76
    line-height:1.9em;
77
    padding: .3em .7em;
77
    padding : 0.4em 0.7em;
78
    cursor: pointer;
78
    cursor: pointer;
79
}
79
}
80
80
81
.paging_full_numbers a.paginate_button {
81
.paging_full_numbers a.paginate_button {
82
    background-color : #FFF;
83
    background-repeat: no-repeat;
82
    color : #0000CC;
84
    color : #0000CC;
83
}
85
}
84
.paging_full_numbers a.paginate_button.first {
86
.paging_full_numbers a.paginate_button.first {
87
    background-color: transparent;
85
    background-image : url('../../img/first.png');
88
    background-image : url('../../img/first.png');
86
    background-repeat: no-repeat;
89
    background-position : 3px center;
87
    background-position : 1% center;
90
    padding-left : 23px;
88
    padding-left : 2em;
89
}
91
}
90
.paging_full_numbers a.paginate_button.previous {
92
.paging_full_numbers a.paginate_button.previous {
93
    background-color: transparent;
91
    background-image : url('../../img/prev.png');
94
    background-image : url('../../img/prev.png');
92
    background-repeat: no-repeat;
95
    background-position : 3px center;
93
    background-position : 1% center;
96
    padding-left : 23px;
94
    padding-left : 2em;
95
}
97
}
96
.paging_full_numbers a.paginate_button.next {
98
.paging_full_numbers a.paginate_button.next {
99
    background-color: transparent;
97
    background-image : url('../../img/next.png');
100
    background-image : url('../../img/next.png');
98
    background-repeat: no-repeat;
101
    background-position : 93% center;
99
    background-position : 96% center;
102
    padding-right : 25px;
100
    padding-right : 2em;
101
}
103
}
102
.paging_full_numbers a.paginate_button.last {
104
.paging_full_numbers a.paginate_button.last {
105
    background-color: transparent;
103
    background-image : url('../../img/last.png');
106
    background-image : url('../../img/last.png');
104
    background-repeat: no-repeat;
107
    background-position : 93% center;
105
    background-position : 96% center;
108
    border-right : 0;
106
    border-right : 1px solid #686868;
109
    padding-right : 25px;
107
    padding-right : 2em;
108
}
110
}
109
div.bottom.pager .paging_full_numbers a.paginate_button.last {
111
div.bottom.pager .paging_full_numbers a.paginate_button.last {
110
    border-right-width : 0;
112
    border-right-width : 0;
111
}
113
}
114
115
div.bottom.pager div:first-child {
116
    border-left : 0;
117
}
118
112
.paging_full_numbers a.paginate_active {
119
.paging_full_numbers a.paginate_active {
113
    background-color : #FFFFEA;
120
    background-color : #FFFFEA;
114
    color : #000;
121
    color : #000;
Lines 203-210 div.dataTables_paginate.paging_four_button { Link Here
203
210
204
.dataTables_processing {
211
.dataTables_processing {
205
    background-color: white;
212
    background-color: white;
206
    border: 1px solid #DDDDDD;
213
    border: 1px solid #999;
207
    color: #999999;
214
    -webkit-box-shadow: 2px 2px 3px 1px rgba(0, 0, 0, 0.2);
215
    box-shadow: 2px 2px 3px 1px rgba(0, 0, 0, 0.2);
216
    color: #333;
208
    font-size: 14px;
217
    font-size: 14px;
209
    height: 30px;
218
    height: 30px;
210
    left: 50%;
219
    left: 50%;
(-)a/koha-tmpl/intranet-tmpl/prog/en/css/quotes.css (-1 lines)
Lines 34-39 Link Here
34
}
34
}
35
35
36
#quotes_editor {
36
#quotes_editor {
37
    float       : left;
38
    width       : 100%;
37
    width       : 100%;
39
}
38
}
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/manage-marc-import.tt (-4 / +5 lines)
Lines 36-41 $(document).ready(function(){ Link Here
36
      "bServerSide": true,
36
      "bServerSide": true,
37
      "sAjaxSource": 'batch_records_ajax.pl',
37
      "sAjaxSource": 'batch_records_ajax.pl',
38
      "sPaginationType": "full_numbers",
38
      "sPaginationType": "full_numbers",
39
      "sDom": '<"top pager"iflp>rt<"bottom pager"flp><"clear">',
39
      "aoColumns": [
40
      "aoColumns": [
40
          { "mDataProp": "import_record_id" },
41
          { "mDataProp": "import_record_id" },
41
          { "mDataProp": "citation" },
42
          { "mDataProp": "citation" },
Lines 64-76 $(document).ready(function(){ Link Here
64
                + aData['match_id']
65
                + aData['match_id']
65
                + " (" + _("score") + "="
66
                + " (" + _("score") + "="
66
                + aData['score']
67
                + aData['score']
67
                + '):' + '<a target="_blank" href="http://staff.kohadev/cgi-bin/koha/catalogue/detail.pl?biblionumber='
68
                + '):' + '<a target="_blank" href="/cgi-bin/koha/catalogue/detail.pl?biblionumber='
68
                + aData['match_id'] + '">' + aData['match_citation'] + '</a>'
69
                + aData['match_id'] + '">' + aData['match_citation'] + '</a>'
69
            );
70
            );
70
        }
71
        }
71
72
72
        $('td:eq(5)', nRow).html(
73
        $('td:eq(5)', nRow).html(
73
            '<a target="_blank" href="http://staff.kohadev/cgi-bin/koha/catalogue/detail.pl?biblionumber='
74
            '<a target="_blank" href="/cgi-bin/koha/catalogue/detail.pl?biblionumber='
74
            + aData['matched'] + '">' + aData['matched'] + '</a>'
75
            + aData['matched'] + '">' + aData['matched'] + '</a>'
75
        );
76
        );
76
      },
77
      },
Lines 372-379 Page Link Here
372
            <th>#</th>
373
            <th>#</th>
373
            <th>Citation</th>
374
            <th>Citation</th>
374
            <th>Status</th>
375
            <th>Status</th>
375
            <th>Match?</th>
376
            <th>Match type</th>
376
            <th>&nbsp;</th>
377
            <th>Match details</th>
377
            <th>Record</th>
378
            <th>Record</th>
378
        </tr>
379
        </tr>
379
    </thead>
380
    </thead>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/quotes.tt (-1 / +1 lines)
Lines 22-27 Link Here
22
                    "bProcessing"       : true,
22
                    "bProcessing"       : true,
23
                    "bPaginate"         : true,
23
                    "bPaginate"         : true,
24
                    "sPaginationType"   : "full_numbers",
24
                    "sPaginationType"   : "full_numbers",
25
                    "sDom": '<"top pager"iflp>rt<"bottom pager"flp><"clear">',
25
                    "sAjaxSource"       : "/cgi-bin/koha/tools/quotes/quotes_ajax.pl",
26
                    "sAjaxSource"       : "/cgi-bin/koha/tools/quotes/quotes_ajax.pl",
26
                    "aoColumns"         : [
27
                    "aoColumns"         : [
27
                                            { "sWidth": "3%"  },
28
                                            { "sWidth": "3%"  },
28
- 

Return to bug 10558