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

(-)a/C4/Templates.pm (-1 / +1 lines)
Lines 102-108 sub output { Link Here
102
    $vars->{themelang} .= '/' . $self->preferredtheme . '/' . $self->lang;
102
    $vars->{themelang} .= '/' . $self->preferredtheme . '/' . $self->lang;
103
    $vars->{yuipath} =
103
    $vars->{yuipath} =
104
      ( C4::Context->preference("yuipath") eq "local"
104
      ( C4::Context->preference("yuipath") eq "local"
105
        ? $vars->{themelang} . "/lib/yui"
105
        ? ( $self->interface eq 'intranet' ? $vars->{themelang} . "/lib/yui" : "/opac-tmpl/lib/yui" )
106
        : C4::Context->preference("yuipath") );
106
        : C4::Context->preference("yuipath") );
107
    $vars->{interface} =
107
    $vars->{interface} =
108
      ( $self->{interface} ne 'intranet' ? '/opac-tmpl' : '/intranet-tmpl' );
108
      ( $self->{interface} ne 'intranet' ? '/opac-tmpl' : '/intranet-tmpl' );
(-)a/koha-tmpl/opac-tmpl/prog/en/css/opac.css (-3 lines)
Lines 1-6 Link Here
1
@import url("../lib/yui/reset-fonts-grids.css");
2
@import url("../lib/yui/skin.css");
3
4
a {
1
a {
5
	font-weight : bold;
2
	font-weight : bold;
6
}
3
}
(-)a/koha-tmpl/opac-tmpl/prog/en/css/sco.css (-3 lines)
Lines 1-6 Link Here
1
@import url("../../en/lib/yui/reset-fonts-grids.css");
2
@import url("../../en/lib/yui/skin.css");
3
4
a {
1
a {
5
	font-weight : bold;
2
	font-weight : bold;
6
}
3
}
(-)a/koha-tmpl/opac-tmpl/prog/en/includes/doc-head-close.inc (+2 lines)
Lines 3-8 Link Here
3
<meta name="generator" content="Koha [% Version %]" /> <!-- leave this for stats -->
3
<meta name="generator" content="Koha [% Version %]" /> <!-- leave this for stats -->
4
<link rel="shortcut icon" href="[% IF ( OpacFavicon ) %][% OpacFavicon %][% ELSE %][% themelang %]/includes/favicon.ico[% END %]" type="image/x-icon" />
4
<link rel="shortcut icon" href="[% IF ( OpacFavicon ) %][% OpacFavicon %][% ELSE %][% themelang %]/includes/favicon.ico[% END %]" type="image/x-icon" />
5
<link rel="stylesheet" type="text/css" href="[% themelang %]/lib/jquery/jquery-ui.css" />
5
<link rel="stylesheet" type="text/css" href="[% themelang %]/lib/jquery/jquery-ui.css" />
6
<link rel="stylesheet" type="text/css" href="[% yuipath %]/reset-fonts-grids.css" />
7
<link rel="stylesheet" type="text/css" href="[% yuipath %]/skin.css" />
6
[% SET opaclayoutstylesheet='opac.css' UNLESS opaclayoutstylesheet %]
8
[% SET opaclayoutstylesheet='opac.css' UNLESS opaclayoutstylesheet %]
7
[% IF (opaclayoutstylesheet.match('^https?:|^\/')) %]
9
[% IF (opaclayoutstylesheet.match('^https?:|^\/')) %]
8
    <link rel="stylesheet" type="text/css" href="[% opaclayoutstylesheet %]" />
10
    <link rel="stylesheet" type="text/css" href="[% opaclayoutstylesheet %]" />
(-)a/koha-tmpl/opac-tmpl/prog/en/modules/sco/help.tt (+2 lines)
Lines 3-8 Link Here
3
<meta name="generator" content="Koha [% Version %]" /> <!-- leave this for stats -->
3
<meta name="generator" content="Koha [% Version %]" /> <!-- leave this for stats -->
4
<link rel="shortcut icon" href="[% themelang %]/includes/favicon.ico" type="image/x-icon" />
4
<link rel="shortcut icon" href="[% themelang %]/includes/favicon.ico" type="image/x-icon" />
5
5
6
<link rel="stylesheet" type="text/css" href="[% yuipath %]/reset-fonts-grids.css" />
7
<link rel="stylesheet" type="text/css" href="[% yuipath %]/skin.css" />
6
<link rel="stylesheet" type="text/css" href="[% themelang %]/css/sco.css" />
8
<link rel="stylesheet" type="text/css" href="[% themelang %]/css/sco.css" />
7
</head>
9
</head>
8
<body>
10
<body>
(-)a/koha-tmpl/opac-tmpl/prog/en/modules/sco/sco-main.tt (-1 / +2 lines)
Lines 97-102 $(document).ready(function() { Link Here
97
[% IF ( opacuserjs ) %]<script type="text/javascript">[% opacuserjs %]</script>[% END %]
97
[% IF ( opacuserjs ) %]<script type="text/javascript">[% opacuserjs %]</script>[% END %]
98
98
99
99
100
<link rel="stylesheet" type="text/css" href="[% yuipath %]/reset-fonts-grids.css" />
101
<link rel="stylesheet" type="text/css" href="[% yuipath %]/skin.css" />
100
<link rel="stylesheet" type="text/css" href="[% themelang %]/css/sco.css" />
102
<link rel="stylesheet" type="text/css" href="[% themelang %]/css/sco.css" />
101
[% IF ( OPACUserCSS ) %]<style type="text/css">[% OPACUserCSS %]</style>[% END %]
103
[% IF ( OPACUserCSS ) %]<style type="text/css">[% OPACUserCSS %]</style>[% END %]
102
104
103
- 

Return to bug 8623