blob: 082b0a43ca6ad361f14a186445388a5b37b0b3b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
{* $Header: /cvsroot/bitweaver/_bit_themes/templates/header_inc.tpl,v 1.26 2006/09/27 15:47:27 spiderr Exp $ *}
{strip}
{if $gBitSystem->isFeatureActive( 'site_style_layout' )}
<link rel="stylesheet" title="{$style}" type="text/css" href="{$smarty.const.THEMES_PKG_URL}layouts/{$gBitSystem->getConfig('site_style_layout')}.css" media="all" />
{/if}
{if $gBitSystem->mStyles.styleSheet}
<link rel="stylesheet" title="{$style}" type="text/css" href="{$gBitSystem->mStyles.styleSheet}" media="all" />
{/if}
{if $gBitSystem->mStyles.browserStyleSheet}
<link rel="stylesheet" title="{$style}" type="text/css" href="{$gBitSystem->mStyles.browserStyleSheet}" media="all" />
{/if}
{if $gBitSystem->mStyles.customStyleSheet}
<link rel="stylesheet" title="{$style}" type="text/css" href="{$gBitSystem->mStyles.custumStyleSheet}" media="all" />
{/if}
{foreach from=$gBitSystem->mStyles.altStyleSheets item=alt_path key=alt_name}
<link rel="alternate stylesheet" title="{$alt_name}" type="text/css" href="{$alt_path}" media="screen" />
{/foreach}
{if $loadMultiFile}
<script type="text/javascript" src="{$smarty.const.UTIL_PKG_URL}javascript/libs/multifile.js"></script>
{/if}
{if $gBitSystem->getConfig('site_disable_jstabs') ne 'y'}
<script type="text/javascript" src="{$smarty.const.UTIL_PKG_URL}javascript/libs/tabpane.js"></script>
{/if}
{/strip}
{if $loadThemesCss}
{literal}
<style type="text/css">
div#themeapprove {position:fixed; color:#000; z-index:1000000; bottom:10px; right:10px; width:400px; background:#fff; border:3px solid #999; padding:20px; text-align:center; opacity:0.8;}
div#themeapprove a {display:block; float:left; margin:10px; padding:20px 71px; background:#eee; border:1px solid #ccc; vertical-align:middle;}
div#themeapprove a:hover {background-color:#b83;}
ul#layoutgala {list-style:none; margin:0; padding:0;}
ul#layoutgala li {list-style:none; float:left; display:inline; margin:0 0 0.5em 0.5em; width:120px; text-align:center}
ul#layoutgala li a {height:160px; display:block; line-height:1.2em; padding:0.5em 0;}
</style>
{/literal}
{/if}
{* drag and drop javascript doesn't work with fat loaded - hardcode css for now *}
{if $loadDragDrop}
<script type="text/javascript" src="{$smarty.const.UTIL_PKG_URL}javascript/libs/drag/dragdrop.js"></script>
{literal}
<style type="text/css">
ul.boxy,
ul.boxy li {min-height:2em; list-style-type:none; border:#ccc solid 1px; padding:4px 4px 0 4px; margin:0px; border:#ccc 1px solid;}
ul.boxy {background:#fff; margin:0px;}
ul.boxy li {cursor:move; margin:0 0 4px 0; padding:2px;}
ul.boxy li {position:relative; width:250px;}
.layout ul.boxy li {position:relative !important; width:auto !important;}
ul#left li {background:#bfc;}
ul#center li {background:#fda;}
ul#right li {background:#cbf;}
</style>
<script type="text/javascript">//<![CDATA[
window.onload = function() {
var list = $( "left" );
DragDrop.makeListContainer( list, 'side_columns' );
list.onDragOver = function() { this.style["background"] = "#feb"; };
list.onDragOut = function() {this.style["background"] = "none"; };
list = $( "center" );
DragDrop.makeListContainer( list, 'center_column' );
list.onDragOver = function() { this.style["background"] = "#dfe"; };
list.onDragOut = function() {this.style["background"] = "none"; };
list = $( "right" );
DragDrop.makeListContainer( list, 'side_columns' );
list.onDragOver = function() { this.style["background"] = "#feb"; };
list.onDragOut = function() {this.style["background"] = "none"; };
};
function getSort( id ) {
order = $( id );
order.value = DragDrop.serData( id, null );
}
//]]></script>
{/literal}
{elseif !$gBitSystem->getConfig('site_disable_fat')}
<script type="text/javascript" src="{$smarty.const.UTIL_PKG_URL}javascript/libs/fat.js"></script>
{/if}
{* Note changes to top_bar.tpl to support dropdowns on MSIE. - spiderr *}
|