Update of /cvsroot/popfile/engine/skins/default
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9379/skins/default
Modified Files:
common-top.thtml
Log Message:
Add template variable to determine if language is RTL. This allows for a custom CSS file to handle differences that would make skins look better in RTL. Allows removal of Sleet-RTL, since fliping the border images would be done in the rtl.css.
Index: common-top.thtml
===================================================================
RCS file: /cvsroot/popfile/engine/skins/default/common-top.thtml,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** common-top.thtml 30 Aug 2005 20:55:26 -0000 1.9
--- common-top.thtml 19 Feb 2006 11:27:43 -0000 1.10
***************
*** 5,11 ****
<link rel="icon" href="favicon.ico">
<link rel="stylesheet" type="text/css" href="<TMPL_VAR NAME="Skin_Root">style.css" media="all" title="POPFile">
- <link rel="stylesheet" type="text/css" href="<TMPL_VAR NAME="Skin_Root">rtl.css" media="all">
<link rel="stylesheet" type="text/css" href="<TMPL_VAR NAME="Skin_Root">print.css" media="print">
<link rel="stylesheet" type="text/css" href="<TMPL_VAR NAME="Skin_Root">handheld.css" media="handheld">
! <TMPL_INCLUDE NAME="common-javascript.thtml">
</head>
--- 5,11 ----
<link rel="icon" href="favicon.ico">
<link rel="stylesheet" type="text/css" href="<TMPL_VAR NAME="Skin_Root">style.css" media="all" title="POPFile">
<link rel="stylesheet" type="text/css" href="<TMPL_VAR NAME="Skin_Root">print.css" media="print">
<link rel="stylesheet" type="text/css" href="<TMPL_VAR NAME="Skin_Root">handheld.css" media="handheld">
! <TMPL_IF NAME="If_Language_RTL"><link rel="stylesheet" type="text/css" href="<TMPL_VAR NAME="Skin_Root">rtl.css" media="all"></TMPL_IF>
! <TMPL_INCLUDE NAME="common-javascript.thtml">
</head>
|