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

(-)a/Koha/Library.pm (-1 / +2 lines)
Lines 369-375 sub to_api_mapping { Link Here
369
        branchnotes      => 'notes',
369
        branchnotes      => 'notes',
370
        marcorgcode      => 'marc_org_code',
370
        marcorgcode      => 'marc_org_code',
371
        opacusercss      => undef,
371
        opacusercss      => undef,
372
        opacuserjs       => undef
372
        opacuserjs       => undef,
373
        library_color    => undef
373
    };
374
    };
374
}
375
}
375
376
(-)a/Koha/Template/Plugin/Branches.pm (+5 lines)
Lines 45-50 sub GetName { Link Here
45
    return $branchname;
45
    return $branchname;
46
}
46
}
47
47
48
sub GetLoggedInBranch {
49
    my ($self) = @_;
50
    return Koha::Libraries->find( $self->GetLoggedInBranchcode );
51
}
52
48
sub GetLoggedInBranchcode {
53
sub GetLoggedInBranchcode {
49
    my ($self) = @_;
54
    my ($self) = @_;
50
55
(-)a/admin/branches.pl (+1 lines)
Lines 98-103 if ( $op eq 'add_form' ) { Link Here
98
        public
98
        public
99
        opacuserjs
99
        opacuserjs
100
        opacusercss
100
        opacusercss
101
        library_color
101
    );
102
    );
102
    my $is_a_modif = $input->param('is_a_modif');
103
    my $is_a_modif = $input->param('is_a_modif');
103
104
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-open.inc (+8 lines)
Lines 33-35 Link Here
33
33
34
[% IF ( bidi ) %]<html lang="[% lang | html %]" dir="[% bidi | html %]">[% ELSE %]<html lang="[% lang | html %]">[% END %]
34
[% IF ( bidi ) %]<html lang="[% lang | html %]" dir="[% bidi | html %]">[% ELSE %]<html lang="[% lang | html %]">[% END %]
35
<head>
35
<head>
36
[% SET library_color = Branches.GetLoggedInBranch.library_color %]
37
[% IF library_color %]
38
    <style>
39
        :root {
40
            --library-color: [% library_color %]
41
        }
42
    </style>
43
[% END %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/branches.tt (-1 / +19 lines)
Lines 368-373 Link Here
368
                            <a class="collapse-textarea" id="collapse_opacusercss" data-target="opacusercss" data-syntax="css" style="display:none" href="#">Collapse<br /></a>
368
                            <a class="collapse-textarea" id="collapse_opacusercss" data-target="opacusercss" data-syntax="css" style="display:none" href="#">Collapse<br /></a>
369
                        </div>
369
                        </div>
370
                    </li>
370
                    </li>
371
                    <li>
372
                        <label for="colorpicker">Primary branch color: </label>
373
                        <input type="color" name="colorpicker" id="colorpicker" value="[% library.library_color | html %]" />
374
                        <input type="text" name="library_color" id="library_color" readonly="readonly" size="10" maxlength="16" value="[% library.library_color | html %]" />
375
                        <a href="#" class="clear_color"><i class="fa fa-fw fa-trash-can"></i> Clear</a>
376
                    </li>
371
                </ol>
377
                </ol>
372
            </fieldset>
378
            </fieldset>
373
            [% IF additional_fields.size %]
379
            [% IF additional_fields.size %]
Lines 609-614 Link Here
609
                                <span>Library hours not set</span>
615
                                <span>Library hours not set</span>
610
                            [% END %]
616
                            [% END %]
611
                        </li>
617
                        </li>
618
                        <li>
619
                            <span class="label">Library color</span>
620
                            [% library.library_color | html %]
621
                        </li>
612
                    </ol>
622
                    </ol>
613
                </div>
623
                </div>
614
                <!-- /.rows -->
624
                <!-- /.rows -->
Lines 880-885 Link Here
880
            }
890
            }
881
            $( "#" + target ).hide();
891
            $( "#" + target ).hide();
882
        });
892
        });
893
        $("#colorpicker").on("change", function(){
894
            let library_color = this.value;
895
            $("#library_color").val( library_color );
896
        });
897
898
        $(".clear_color").on("click", function(e){
899
            e.preventDefault();
900
            $("#library_color, #colorpicker").val( "" );
901
        });
883
    </script>
902
    </script>
884
[% END %]
903
[% END %]
885
904
886
- 

Return to bug 37054