Bug 8623: Move YUI out of prog
This patch moves the YUI assets from koha-tmpl/opac-tmpl/prog/en/lib/yui to koha-tmpl/opac-tmpl/lib/yui. NOTE: This was tested on Chrome, FF, and Safari on a Mac, and IE and FF on Windows. To test: 1) View a smattering of pages on the OPAC and intranet. If the move did not work flawlessly, layout will be way off. Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> Signed-off-by: Paul Poulain <paul.poulain@biblibre.com>
This commit is contained in:
parent
765bbe1dad
commit
5107870359
16 changed files with 7 additions and 7 deletions
|
@ -102,7 +102,7 @@ sub output {
|
|||
$vars->{themelang} .= '/' . $self->preferredtheme . '/' . $self->lang;
|
||||
$vars->{yuipath} =
|
||||
( C4::Context->preference("yuipath") eq "local"
|
||||
? $vars->{themelang} . "/lib/yui"
|
||||
? ( $self->interface eq 'intranet' ? $vars->{themelang} . "/lib/yui" : "/opac-tmpl/lib/yui" )
|
||||
: C4::Context->preference("yuipath") );
|
||||
$vars->{interface} =
|
||||
( $self->{interface} ne 'intranet' ? '/opac-tmpl' : '/intranet-tmpl' );
|
||||
|
|
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 3 KiB |
|
@ -1,6 +1,3 @@
|
|||
@import url("../lib/yui/reset-fonts-grids.css");
|
||||
@import url("../lib/yui/skin.css");
|
||||
|
||||
a {
|
||||
font-weight : bold;
|
||||
}
|
||||
|
|
|
@ -1,6 +1,3 @@
|
|||
@import url("../../en/lib/yui/reset-fonts-grids.css");
|
||||
@import url("../../en/lib/yui/skin.css");
|
||||
|
||||
a {
|
||||
font-weight : bold;
|
||||
}
|
||||
|
|
|
@ -3,6 +3,8 @@
|
|||
<meta name="generator" content="Koha [% Version %]" /> <!-- leave this for stats -->
|
||||
<link rel="shortcut icon" href="[% IF ( OpacFavicon ) %][% OpacFavicon %][% ELSE %][% themelang %]/includes/favicon.ico[% END %]" type="image/x-icon" />
|
||||
<link rel="stylesheet" type="text/css" href="[% themelang %]/lib/jquery/jquery-ui.css" />
|
||||
<link rel="stylesheet" type="text/css" href="[% yuipath %]/reset-fonts-grids.css" />
|
||||
<link rel="stylesheet" type="text/css" href="[% yuipath %]/skin.css" />
|
||||
[% SET opaclayoutstylesheet='opac.css' UNLESS opaclayoutstylesheet %]
|
||||
[% IF (opaclayoutstylesheet.match('^https?:|^\/')) %]
|
||||
<link rel="stylesheet" type="text/css" href="[% opaclayoutstylesheet %]" />
|
||||
|
|
|
@ -3,6 +3,8 @@
|
|||
<meta name="generator" content="Koha [% Version %]" /> <!-- leave this for stats -->
|
||||
<link rel="shortcut icon" href="[% themelang %]/includes/favicon.ico" type="image/x-icon" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="[% yuipath %]/reset-fonts-grids.css" />
|
||||
<link rel="stylesheet" type="text/css" href="[% yuipath %]/skin.css" />
|
||||
<link rel="stylesheet" type="text/css" href="[% themelang %]/css/sco.css" />
|
||||
</head>
|
||||
<body>
|
||||
|
|
|
@ -97,6 +97,8 @@ $(document).ready(function() {
|
|||
[% IF ( opacuserjs ) %]<script type="text/javascript">[% opacuserjs %]</script>[% END %]
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="[% yuipath %]/reset-fonts-grids.css" />
|
||||
<link rel="stylesheet" type="text/css" href="[% yuipath %]/skin.css" />
|
||||
<link rel="stylesheet" type="text/css" href="[% themelang %]/css/sco.css" />
|
||||
[% IF ( OPACUserCSS ) %]<style type="text/css">[% OPACUserCSS %]</style>[% END %]
|
||||
|
||||
|
|
Loading…
Reference in a new issue