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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-close.inc (-3 / +8 lines)
Lines 3-12 Link Here
3
<link rel="stylesheet" type="text/css" href="[% interface %]/lib/jquery/jquery-ui.css" />
3
<link rel="stylesheet" type="text/css" href="[% interface %]/lib/jquery/jquery-ui.css" />
4
<link rel="stylesheet" type="text/css" href="[% interface %]/lib/bootstrap/bootstrap.min.css" />
4
<link rel="stylesheet" type="text/css" href="[% interface %]/lib/bootstrap/bootstrap.min.css" />
5
<link rel="stylesheet" type="text/css" media="print" href="[% themelang %]/css/print.css" />
5
<link rel="stylesheet" type="text/css" media="print" href="[% themelang %]/css/print.css" />
6
[% IF ( intranetstylesheet ) %]
6
[% SET intranetstylesheet='staff-global.css' UNLESS intranetstylesheet %]
7
[% IF (intranetstylesheet.match('^https?:|^\/')) %]
7
    <link rel="stylesheet" type="text/css" href="[% intranetstylesheet %]" />
8
    <link rel="stylesheet" type="text/css" href="[% intranetstylesheet %]" />
8
[% ELSE %]
9
[% ELSE %]
9
    <link rel="stylesheet" type="text/css" href="[% themelang %]/css/staff-global.css" />
10
    <link rel="stylesheet" type="text/css" href="[% themelang %]/css/[% intranetstylesheet %]" />
10
[% END %]
11
[% END %]
11
[% IF ( bidi ) %]
12
[% IF ( bidi ) %]
12
   <link rel="stylesheet" type="text/css" href="[% themelang %]/css/right-to-left.css" />
13
   <link rel="stylesheet" type="text/css" href="[% themelang %]/css/right-to-left.css" />
Lines 29-35 Link Here
29
30
30
<!-- local colors -->
31
<!-- local colors -->
31
[% IF ( intranetcolorstylesheet ) %]
32
[% IF ( intranetcolorstylesheet ) %]
32
    <link rel="stylesheet" type="text/css" href="[% themelang %]/css/[% intranetcolorstylesheet %]" />
33
    [% IF (intranetcolorstylesheet.match('^https?:|^\/')) %]
34
        <link rel="stylesheet" type="text/css" href="[% intranetcolorstylesheet %]" />
35
    [% ELSE %]
36
        <link rel="stylesheet" type="text/css" href="[% themelang %]/css/[% intranetcolorstylesheet %]" />
37
    [% END %]
33
[% END %]
38
[% END %]
34
39
35
<!-- yui js --> 
40
<!-- yui js --> 
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/staff_client.pref (-5 / +4 lines)
Lines 11-20 Staff Client: Link Here
11
              class: url
11
              class: url
12
            - .
12
            - .
13
        -
13
        -
14
            - Include the stylesheet at
14
            - Use the CSS stylesheet
15
            - pref: intranetstylesheet
15
            - pref: intranetstylesheet
16
              class: url
16
              class: url
17
            - on all pages in the staff interface, instead of the default. (This should be a complete URL, starting with <code>http://</code>.)
17
            - on all pages in the staff interface, instead of the default css (used when leaving this field blank). Enter just a filename, a full local path or a complete URL starting with <code>http://</code> (if the file lives on a remote server). Please note that if you just enter a filename, the file should be in the css subdirectory for each active theme and language within the Koha templates directory. A full local path is expected to start from your HTTP document root.
18
        -
18
        -
19
            - "Use the following JavaScript for printing slips. Define at least function printThenClose(). For use e.g. with Firefox PlugIn jsPrintSetup, see http://jsprintsetup.mozdev.org/:"
19
            - "Use the following JavaScript for printing slips. Define at least function printThenClose(). For use e.g. with Firefox PlugIn jsPrintSetup, see http://jsprintsetup.mozdev.org/:"
20
            - pref: IntranetSlipPrinterJS
20
            - pref: IntranetSlipPrinterJS
Lines 26-35 Staff Client: Link Here
26
              type: textarea
26
              type: textarea
27
              class: code
27
              class: code
28
        -
28
        -
29
            - Include the stylesheet <code><!-- TMPL_VAR NAME="themelang" -->/css/</code>
29
            - Include the additional CSS stylesheet
30
            - pref: intranetcolorstylesheet
30
            - pref: intranetcolorstylesheet
31
              class: file
31
              class: file
32
            - on all pages in the staff interface. (Leave blank to disable.)
32
            - to override specified settings from the default stylesheet (leave blank to disable.) Enter just a filename, a full local path or a complete URL starting with <code>http://</code> (if the file lives on a remote server). Please note that if you just enter a filename, the file should be in the css subdirectory for each active theme and language within the Koha templates directory. A full local path is expected to start from your HTTP document root.
33
        -
33
        -
34
            - Use include files from the
34
            - Use include files from the
35
            - pref: intranet_includes
35
            - pref: intranet_includes
36
- 

Return to bug 10052