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

(-)a/C4/Items.pm (-1 / +1 lines)
Lines 1608-1614 sub PrepareItemrecordDisplay { Link Here
1608
                        my $class = $plugin->noclick ? ' disabled' : '';
1608
                        my $class = $plugin->noclick ? ' disabled' : '';
1609
                        my $title = $plugin->noclick ? 'No popup'  : 'Tag editor';
1609
                        my $title = $plugin->noclick ? 'No popup'  : 'Tag editor';
1610
                        $subfield_data{marc_value} =
1610
                        $subfield_data{marc_value} =
1611
                            qq[<input type="text" id="$subfield_data{id}" name="field_value" class="input_marceditor framework_plugin" size="50" maxlength="$maxlength" value="$defaultvalue" data-plugin="$plugin->{name}" /><a href="#" id="buttonDot_$subfield_data{id}" class="buttonDot $class" title="$title" data-plugin="$plugin->{name}">...</a>\n]
1611
                            qq[<input type="text" id="$subfield_data{id}" name="field_value" class="input_marceditor framework_plugin" size="50" maxlength="$maxlength" value="$defaultvalue" data-plugin="$plugin->{name}" /><a href="#" id="buttonDot_$subfield_data{id}" class="buttonDot tag_editor framework_plugin $class" title="$title" data-plugin="$plugin->{name}">...</a>\n]
1612
                            . $plugin->javascript;
1612
                            . $plugin->javascript;
1613
                    } else {
1613
                    } else {
1614
                        warn $plugin->errstr;
1614
                        warn $plugin->errstr;
(-)a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss (-1 lines)
Lines 3435-3441 progress { Link Here
3435
.tag_editor {
3435
.tag_editor {
3436
    background: transparent url( "../img/edit-tag.png" ) top left no-repeat;
3436
    background: transparent url( "../img/edit-tag.png" ) top left no-repeat;
3437
    display: block;
3437
    display: block;
3438
    float: left;
3439
    height: 16px;
3438
    height: 16px;
3440
    margin: 4px;
3439
    margin: 4px;
3441
    overflow: hidden;
3440
    overflow: hidden;
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/serials-edit.tt (-3 / +2 lines)
Lines 330-336 Link Here
330
                                                            Item</a
330
                                                            Item</a
331
                                                        >
331
                                                        >
332
                                                    </legend>
332
                                                    </legend>
333
                                                    <div class="cataloguing_additem_itemlist">
333
                                                    <div class="cataloguing_additem_itemlist marc_editor">
334
                                                        [% FOREACH item IN serialslis.items %]
334
                                                        [% FOREACH item IN serialslis.items %]
335
                                                            <div id="item[% item.serialid | html %][% item.countitems | html %]" class="items">
335
                                                            <div id="item[% item.serialid | html %][% item.countitems | html %]" class="items">
336
                                                                <ol
336
                                                                <ol
Lines 527-533 Link Here
527
                                                            Item</a
527
                                                            Item</a
528
                                                        >
528
                                                        >
529
                                                    </legend>
529
                                                    </legend>
530
                                                    <div class="cataloguing_additem_itemlist">
530
                                                    <div class="cataloguing_additem_itemlist marc_editor">
531
                                                        <div id="item[% newserialloo.serialid | html %][% newserialloo.countitems | html %]" class="items">
531
                                                        <div id="item[% newserialloo.serialid | html %][% newserialloo.countitems | html %]" class="items">
532
                                                            <ol
532
                                                            <ol
533
                                                                >[% FOREACH iteminformatio IN newserialloo.iteminformation %]
533
                                                                >[% FOREACH iteminformatio IN newserialloo.iteminformation %]
534
- 

Return to bug 39299