Changeset 4659 for extensions/Juza
- Timestamp:
- Jan 10, 2010, 4:38:45 PM (15 years ago)
- Location:
- extensions/Juza
- Files:
-
- 3 added
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/Juza/include/functions.inc.php
r4537 r4659 3 3 global $template; 4 4 Juza_update(); 5 $template->set_filenames(array('juza' => 'theme/Juza/script.tpl')); 5 $template->set_filenames(array( 6 'juza' => 'theme/Juza/script.tpl', 7 'juzabar' => 'theme/Juza/Juzabar.tpl', 8 'juzaconfig' => 'theme/Juza/include/Juzaconfig.tpl', 9 )); 10 include_once(PHPWG_ROOT_PATH.'include/menubar.inc.php'); 6 11 $template->parse('juza'); 12 $template->parse('juzabar'); 13 $template->parse('juzaconfig'); 7 14 } 8 15 … … 44 51 } 45 52 53 function Juza_common_tags($max_tags) 54 { 55 $query = ' 56 SELECT t.*, count(*) AS counter 57 FROM '.IMAGE_TAG_TABLE.' 58 INNER JOIN '.TAGS_TABLE.' t ON tag_id = id 59 GROUP BY tag_id 60 ORDER BY counter DESC 61 LIMIT 0,' . $max_tags . ';'; 62 $result = pwg_query($query); 63 $tags = array(); 64 while($row = mysql_fetch_assoc($result)) { 65 array_push($tags, $row); 66 } 67 usort($tags, 'tag_alpha_compare'); 68 return $tags; 69 } 70 71 function Juza_tags( $ref_back ) { 72 $menu = & $ref_back[0]; 73 $block = $menu->get_block( 'mbTags' ); 74 if ( count($block->data) > 0 ) return; 75 $tags = Juza_common_tags(10); 76 $tags = add_level_to_tags($tags); 77 foreach ($tags as $tag) { 78 $block->data[] = array_merge( str_replace(' ', ' ', $tag), 79 array( 80 'URL' => make_index_url( array( 'tags' => array($tag) ) ), 81 'U_ADD' => make_index_url( array( 'tags' => array($tag) ) ), 82 ) 83 ); 84 } 85 $block->template = 'menubar_tags.tpl'; 86 } 87 46 88 function remove_AkBookStyle_handlers() { 47 89 global $public_content; … … 57 99 if (isset($conf['Juza Config'])) $conf_Juza = array_merge($conf_Juza, unserialize($conf['Juza Config'])); 58 100 if (isset($_POST['Juza_submit'])) { 59 $conf_Juza['Juza_handlers'] = isset($_POST['Juza_handlers']) ? true:false;60 101 $conf_Juza['Juza_width'] = isset($_POST['Juza_width']) ? (integer)$_POST['Juza_width'] : 885; 61 102 $conf_Juza['Juza_width'] = ($conf_Juza['Juza_width'] > 885) ? 885 : $conf_Juza['Juza_width']; … … 84 125 pwg_query($query); 85 126 } 86 $conf['Juza_active'] = (!isset($conf_Juza['Juza_handlers'])) ? true:$conf_Juza['Juza_handlers'];87 127 88 if ( is_admin() ) { 89 $template->append('footer_elements', '<form method="post" name="JuzaTC" action="' . make_index_url() . '"> 90 <input name="Juza_config" type="submit" value="'. l10n('Juza Theme Configuration') .'" class="conf" /> 91 <input type="hidden" value="true" name="Juza_conf" /> 92 </form>'); 93 } 94 if ( isset($_POST['Juza_conf']) ) $template->assign('Juza_config', true); 95 if ($conf['Juza_active']) $template->assign('Juza_active', true); 96 if ($conf_Juza['Juza_handlers']) $template->assign('Juza_handlers', 'checked="checked"'); 128 $template->assign('Juza_config', true); 129 97 130 $user["expand"] = true; 98 131 $template->assign('Juza_cats', get_categories_menu()); … … 106 139 $template->assign('Juza_shift3', -(12+$conf_Juza['Juza_height'])); 107 140 if ($conf_Juza['Juza_Auto_CS']) $template->assign('Juza_Auto_CS', 'checked="checked"'); 108 if (isset($_POST['Juza_close'])) {109 redirect(make_index_url());110 }111 141 } 112 142 function Juza_default() { 113 143 return array( 114 'Juza_handlers' => true,115 144 'Juza_width' => 885, 116 145 'Juza_height' => 240, -
extensions/Juza/js/juzascript.js
r4537 r4659 11 11 $('.thumbnailCategories li').addClass('Juza-cat'); 12 12 $('.description li').removeClass('Juza-cat'); 13 $('.thumbnailCategory div.description').addClass('Juza-desc'); 14 $('td.JS_active').show(); 13 15 $nav = $('#content .navigationBar').html(); 14 16 if ($nav == null) $nav = ''; … … 43 45 $('#menubar').toggleClass('displayed'); 44 46 }); 45 //$('span#updateRate').parent('table').eq(0).show().children('td').hide(); 46 //$('span#updateRate').parent('td').eq(0).show(); 47 48 var $c = $('#Juza_call').html(); 49 $('#menubar a[href*="admin.php"]').parent('li').eq(0).after('<li>'+$c+'</li>'); 50 $('#menubar form#Juza_action input.Juza_conf').hide(); 51 $('#menubar form#Juza_action').hide(); 52 $('#menubar a.Juza_conf').show(); 53 54 $('a.Juza_conf').click(function(){ 55 $('#menubar').toggleClass('displayed'); 56 $('#JuzaBox').fadeIn('fast'); 57 if($('body').height() > $('body').offset().height){ 58 var sH = $('body').height(); 59 }else{ 60 var sH = $('body').offset().height; 61 } 62 $('#JuzaShade').css( {height:sH+'px'}).css('z-index',9998).fadeIn('fast'); 63 64 $('#JuzaCloseBox').click(function(){ 65 $('#JuzaBox').fadeOut('fast'); 66 $('#JuzaShade').fadeOut('fast').css('z-index',-9998); 67 }); 68 }); 47 69 }); -
extensions/Juza/language/en_UK/lang.php
r4516 r4659 10 10 $lang['[-320:0]'] = '[-320:0] '; 11 11 $lang['Auto cropping and shifting'] = 'Auto cropping and shifting '; 12 $lang[' Recommended medium width < 900px'] = 'Recommended medium width < 900px';12 $lang['Inactive, maintain picture width < 900px (Height is free)'] = 'Inactive, maintain picture width < 900px (Height is free)'; 13 13 $lang['Juza_Submit'] = 'Submit'; 14 14 $lang['Juza_Reset'] = 'Reset'; 15 $lang['Juza_Close'] = 'Close';16 15 ?> -
extensions/Juza/language/fr_FR/lang.php
r4516 r4659 10 10 $lang['[-320:0]'] = '[-320:0] '; 11 11 $lang['Auto cropping and shifting'] = 'Décalage et découpe automatiques '; 12 $lang[' Recommended medium width < 900px'] = 'La largeur des images doit rester < 900px ';12 $lang['Inactive, maintain picture width < 900px (Height is free)'] = 'Désactivé, la largeur des images doit rester < 900px '; 13 13 $lang['Juza_Submit'] = 'Enregister'; 14 14 $lang['Juza_Reset'] = 'Annuler'; 15 $lang['Juza_Close'] = 'Fermer';16 15 ?> -
extensions/Juza/language/it_IT/lang.php
r4521 r4659 10 10 $lang['[-320:0]'] = '[-320:0] '; 11 11 $lang['Auto cropping and shifting'] = 'Offset e taglio automatico '; 12 $lang[' Recommended medium width < 900px'] = 'La larghezza dell\'immagine deve rimanere < 900px';12 $lang['Inactive, maintain picture width < 900px (Height is free)'] = 'Inattivi, mantenere la larghezza dell\'immagine deve rimanere < 900px'; 13 13 $lang['Juza_Submit'] = 'Salvare'; 14 14 $lang['Juza_Reset'] = 'Cancellare'; 15 $lang['Juza_Close'] = 'Chiudere';16 15 ?> -
extensions/Juza/script.tpl
r4537 r4659 1 {if isset($Juza_active)} 2 {known_script id="jquery" src=$ROOT_URL|@cat:"template-common/lib/jquery.packed.js"} 3 {known_script id="jquery.ui" src=$ROOT_URL|@cat:"template-common/lib/ui/ui.core.packed.js"} 4 {assign var=JUZA value=$ROOT_URL|@cat:"template/"|@cat:$themeconf.template|@cat:"/theme/"|@cat:$themeconf.theme} 5 {known_script id="juza" src=$JUZA|@cat:"/js/juzascript.js"} 6 {html_head} 7 <script type="text/javascript"> 8 $('img.bigImg').each(function() {ldelim} 9 $h = $(this).height() 10 if ($h < {$Juza_height}) {ldelim} 11 $(this).parent('.maxIllustration a').eq(0).css('height', $h+'px'); 12 $(this).parent('li.Juza-cat').eq(0).css('height', (55+$h)+'px'); 13 $(this).parent('li.Juza-cat').eq(0).css('min-height', (55+$h)+'px'); 14 $(this).parent('li.Juza-cat').children('.description').eq(0).css('height', (325+$h)+'px'); 15 $(this).parent('li.Juza-cat').children('.description').eq(0).css('top', (-(12+$h))+'px'); 16 } 17 }); 18 </script> 19 {if isset($Juza_Auto_CS)} {* Auto Cropping and Shifting *} 20 <style type="text/css"> 1 {*known_script id="jquery" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"*} 2 {known_script id="jquery" src=$ROOT_URL|@cat:"template-common/lib/jquery.packed.js"} 3 {known_script id="jquery.ui" src=$ROOT_URL|@cat:"template-common/lib/ui/ui.core.packed.js"} 4 {assign var=JUZA value=$ROOT_URL|@cat:"template/"|@cat:$themeconf.template|@cat:"/theme/"|@cat:$themeconf.theme} 5 {known_script id="juza" src=$JUZA|@cat:"/js/juzascript.js"} 6 {html_head} 7 <style type="text/css"> 21 8 .maxIllustration a {ldelim} max-height: {$Juza_height}px; height: {$Juza_height}px; width:{$Juza_width}px; } 22 9 .bigImg {ldelim} top:{$Juza_shift}px; width:{$Juza_width}px !important; } 23 10 #imageToolBar {ldelim} top:{$Juza_shift2}px; } 24 .content ul.thumbnailCategories li.Juza-cat {ldelim} height:{$Juza_height2}px; min-height:{$Juza_height2}px; } 25 </style> 26 {else} 27 <script type="text/javascript"> 28 $('img.bigImg').each(function() {ldelim} 29 $h = $(this).height() 30 $(this).parent('.maxIllustration a').eq(0).css('height', $h+'px'); 31 $(this).parent('li.Juza-cat').eq(0).css('height', (55+$h)+'px'); 32 $(this).parent('li.Juza-cat').eq(0).css('min-height', (55+$h)+'px'); 33 $(this).parent('li.Juza-cat').children('.description').eq(0).css('height', (325+$h)+'px'); 34 $(this).parent('li.Juza-cat').children('.description').eq(0).css('top', (-(12+$h))+'px'); 35 $(this).after('--'+$h+'px --'); 36 }); 37 </script> 38 {/if} 39 <style type="text/css"> 40 .content div.thumbnailCategory div.description {ldelim} height:{$Juza_height3}px !important; top:{$Juza_shift3}px; } 41 #copyright {ldelim} margin-top: {$Juza_width}px; } 42 table.juzabar td {ldelim} width: 155px; } 43 </style> 44 <noscript> 45 <style type="text/css"> 46 .maxIllustration a {ldelim} max-height: auto; height: auto; width:auto; } 47 .bigImg {ldelim} top:0px; width:auto !important; } 48 #imageToolBar {ldelim} top:0px; } 49 .content ul.thumbnailCategories li.Juza-cat {ldelim} height:auto; min-height:auto; } 50 .content div.thumbnailCategory div.description {ldelim} height:auto !important; top:0px; } 51 #copyright {ldelim} margin-top: 0px; } 52 .content ul.thumbnailCategories li {ldelim} width:49.7%; } 53 </style> 54 </noscript> 11 .content ul.thumbnailCategories li.Juza-cat {ldelim} height:{$Juza_height2}px; min-height:{$Juza_height2}px; width: 100%; } 12 .content div.thumbnailCategory div.Juza-desc {ldelim} height:{$Juza_height3}px !important; top:{$Juza_shift3}px; } 13 </style> 55 14 56 {/html_head} 57 {else} 58 {html_head} 59 <style type="text/css"> 60 .content ul.thumbnailCategories li {ldelim} width:49.7%; } 61 </style> 62 {/html_head} 63 {/if} 64 <table cellspacing="0" class="juzabar"> 65 <tbody><tr> 66 <td>HOME PAGE</td> 67 <td>PORTFOLIO</td> 68 <td><a title="Gallery home" href="{''|make_index_url}"><strong>GALLERIES</strong></a></td> 69 <td><a title="Available tags" href="{$ROOT_URL}tags.php"><strong>TAGS</strong></a></td> 70 <td>ABOUT JUZA</td> 71 <td>E-MAIL</td> 72 <td>JUZA FORUM</td> 73 {if !empty($blocks)} 74 <td><a class="Juza_menu hidden" title="Display menu" href="#"><strong>MENU</strong></a></td> 75 {/if} 76 </tr> 77 </tbody></table> 78 {if isset($thumbnails) and isset($Juza_active)} 15 <script type="text/javascript"> 16 $().ready(function() {ldelim} 17 $('div.illustration a img').each(function() {ldelim} 18 $(this).ready(function() {ldelim} 19 var $h = $(this).height(); 20 {if isset($Juza_Auto_CS)}if ($h < {$Juza_height}) /* Kill Auto crop */ {/if} {literal} { 21 var $i = ($h + 55)+'px'; 22 var $j = ($h + 325)+'px'; 23 var $k = ($h + 12)+'px'; 24 var $h = $h+'px'; 25 $(this).css('top', '0px'); 26 $(this).parents('li').eq(0).addClass('Juza-cat').css('height', $i).css('min-height', $i).css('width','100%'); 27 $(this).parents('li.Juza-cat').eq(0).find('.description').eq(0).css('height' , $j).css('top', '-'+$k).find('li').css('width','100%'); 28 $(this).parents('.maxIllustration a').eq(0).css('height', $h); 29 };{/literal} 30 }); 31 }); 32 var $h = $('#jquery_local_img #relTag').height() + 50 + {$Juza_width}; 33 $('#copyright').css('margin-top', $h+'px'); 34 }); 35 </script> 36 {/html_head} 37 38 {if isset($thumbnails)} 79 39 <div id="ix-desc" style="display:none"> 80 40 {foreach from=$thumbnails item=thumbnail} 81 41 <div title="{$thumbnail.FILE_DESC|@htmlspecialchars}" class="Thumb-{$thumbnail.ID}" alt="{$thumbnail.FILE_WIDTH}"></div> 82 42 <div title="{$thumbnail.FILE_PATH}" class="Medium-{$thumbnail.ID}" alt="{$thumbnail.FILE_HEIGHT}"></div> 83 43 {/foreach} 84 44 </div> 85 45 {/if} 86 {if isset($category_thumbnails) and isset($Juza_active)} 46 47 {if isset($category_thumbnails)} 87 48 <div id="ix-cat" style="display:none"> 88 49 {foreach from=$category_thumbnails item=cat} … … 91 52 </div> 92 53 {/if} 54 93 55 {if isset($Juza_cats)} 94 56 <div id="menu-cat" style="display:none"> … … 96 58 </div> 97 59 {/if} 98 {if isset($Juza_config)} 99 <form id="Juza_config" method="post" class="properties" action="index.php"> 100 <fieldset id="Juza_config_fs"> 101 <legend><span class="legend">{'Juza Theme Configuration'|@translate}</span></legend> 102 <ul> 103 <li> 104 <label> 105 <span class="property">{'Activate Juza handlers'|@translate}</span> 106 <input type="checkbox" name="Juza_handlers" {$Juza_handlers} /> 107 <span class="range">{'Unselected => like Javascript inactive'|@translate}</span> 108 </label> 109 </li> 110 <li> 111 <span class="property"> 112 <label for="Width">{'Index picture max-width'|@translate}</label> 113 </span> 114 <input type="text" size="4" maxlength="4" name="Juza_width" id="Juza_width" value="{$Juza_width}" /> 115 <span class="range">{'[300:885]'|@translate}</span> 116 </li> 117 <li> 118 <span class="property"> 119 <label for="Height">{'Index picture cropping-height'|@translate}</label> 120 </span> 121 <input type="text" size="4" maxlength="4" name="Juza_height" id="Juza_height" value="{$Juza_height}" /> 122 <span class="range">{'[110:400]'|@translate}</span> 123 </li> 124 <li> 125 <span class="property"> 126 <label for="Shift">{'Index picture top-shift'|@translate}</label> 127 </span> 128 <input type="text" size="4" maxlength="4" name="Juza_shift" id="Juza_shift" value="{$Juza_shift}" /> 129 <span class="range">{'[-320:0]'|@translate}</span> 130 </li> 131 <li> 132 <label> 133 <span class="property">{'Auto cropping and shifting'|@translate}</span> 134 <input type="checkbox" name="Juza_Auto_CS" {$Juza_Auto_CS} /> 135 <span class="range">{'Recommended medium width < 900px'|@translate}</span> 136 </label> 137 </li> 138 </ul> 139 </fieldset> 140 141 <input type="hidden" value="true" name="Juza_conf" /> 142 <input class="submit" type="submit" name="Juza_submit" value="{'Juza_Submit'|@translate}" /> 143 <input class="submit" type="submit" name="Juza_reset" value="{'Juza_Reset'|@translate}" /> 144 <input class="submit" type="submit" name="Juza_close" value="{'Juza_Close'|@translate}" /> 145 146 </form> 60 61 {if is_admin()} 62 <div id="Juza_call" style="display:none"><a class="Juza_conf" href="#" alt="">{'Juza Theme Configuration'|@translate}</a> 63 </div> 147 64 {/if} 65 66 {$MENUBAR} 67 {assign var=MENUBAR value=''} 68 -
extensions/Juza/theme.css
r4537 r4659 4 4 html body * {background-color: transparent; margin:0;padding:0; outline:0;} 5 5 html body {background-color: #0; margin:0;padding:0;} 6 html body #the_page { background-color: #292929 !important; width:1240px;margin:10px auto; height: 100%; border: 1px solid #fff !important; }6 html body #the_page { background-color: #292929 !important; width:1240px;margin:10px auto; min-height: 100%; height: 100%; border: 1px solid #fff !important; } 7 7 body, h1, h2, h3, dt, #menubar dt, .throw, INPUT.rateButtonSelected {color:#ddffdd;} 8 #content .pageNumberSelected { color: #52ff97; color: #72ffb7;}8 #content .pageNumberSelected { color: #72ffb7; } 9 9 .content div.titrePage ul.categoryActions { display: none; } 10 .content div.thumbnailCategory div.description { position:relative; width:100%; z-index:10; overflow: hidden; }10 .content div.thumbnailCategory div.description { position:relative; width:100%; z-index:10; overflow: hidden; height:auto; top:0px;} 11 11 .content ul.thumbnails span, .content ul.thumbnails label, .content div.thumbnailCategory div.illustration { width:135px; } 12 12 .content { margin:0 3em !important; font-family:Verdana,Arial,Helvetica,sans-serif; font-size:10pt; } … … 14 14 .content div.thumbnailCategory div.description h3 { position:relative; top:10px; z-index:11; } 15 15 .content div.thumbnailCategory div.description ul { margin: 10px 5px 5px 30px; } 16 .content ul.thumbnailCategories li { width:100%; } 17 .content ul.thumbnailCategories li.Juza-cat { margin:0 0 20px; }16 /* .content ul.thumbnailCategories li { width:100%; } Let user choice in case of noscript */ 17 .content ul.thumbnailCategories li.Juza-cat { margin:0 0 20px; height:auto; min-height:auto; } 18 18 .content ul.thumbnails span.wrap1 { background-color: #000 !important; width: 140px; height: 140px; min-width: 140px; min-height: 140px; max-width: 140px; max-height: 140px; margin:0 2px 2px 0; border: 1px solid #444; } 19 19 .content ul.thumbnails span.wrap1 .thumbLegend { display: none !important; } 20 20 .content ul.thumbnails span.wrap2 { -moz-border-radius: 0; border-radius: 0; } 21 21 .content ul.thumbnails span.wrap2 img.thumbnail { margin:auto; border: 1px solid #111; } 22 #copyright { margin-top: 0px; } 22 23 #copyright * { color: #383838; } 23 24 form.filter fieldset label textarea { display:block; margin:0.5em auto; color: #ddffdd; } 24 25 fieldset { margin:1em !important; padding:1em !important; } 26 fieldset#Juza_config_fs { border: 0px; } 25 27 #content UL.thumbnails LI SPAN.wrap1 SPAN.wrap2:hover { background-color: #181818; } 26 28 div.illustration { overflow: hidden; } 27 29 div.illustration img { border: 0; margin-left: 0px; } 28 .bigImg { position:relative; }30 .bigImg { position:relative; top:0px; width:auto; } 29 31 img.icon[alt="(!)"] { display: none; } 30 input. conf, a { color: #FB9700 !important }31 input. conf:hover, a:hover { color: #ef5810 !important }32 input[type="submit"]. conf { border:0;margin-top: 7; margin-bottom: 0;background-color: transparent !important; font-weight:normal; }32 input.Juza_conf, a { color: #FB9700 !important } 33 input.Juza_conf:hover, a:hover { color: #ef5810 !important } 34 input[type="submit"].Juza_conf { border:0;margin-top: 7; margin-bottom: 0;background-color: transparent !important; font-weight:normal; } 33 35 input[type="text"], input[type="password"], input[type="button"], input[type="submit"], input[type="reset"], input[type="file"] { 34 36 background-color:#D3D3D3 !important; } 35 37 #content, #content *,.content, .content *, .titrePage, #content div.thumbnailCategory { background-color: transparent; } 36 #menubar { display:none; background-color: #222; position: absolute; right: 2%; z-index: 9999; }38 #menubar { display:none; background-color: #222; position: absolute; right: 2%; z-index: 9999; top: 135px; } 37 39 #menubar.displayed { display: block; } 38 40 #menubar *, #menubar dt, #menubar dl { background-color: #222; } 41 #menubar #menuTagCloud span { white-space:normal; } 39 42 select, textarea { color:#ddffdd; background-color:#222 !important; } 40 43 #imageToolBar, .header_notes { background-color: transparent; } 41 44 #jquery_local_img { text-align: center; margin-top: 5px; min-height: 600px; height: 600px; /* linked to Area Mapping */ } 45 a.Juza_conf { display: none; } 42 46 #Juza_config input[type="text"], #Juza_config input[type="checkbox"] { float:left; margin:6px auto auto 4px; } 43 47 #Juza_config input[type="submit"] { margin:10px auto 15px; } 44 48 #Juza_config .range { text-align: left; float: left; margin-left: 10px; font-style:italic; } 49 #JuzaBox {width:100%; margin:50px 0px; text-align:center; display:none;} 50 #JuzaWrap {width:800px; background-color:#292929; border:3px #6DAA37 solid; margin:auto; margin-left:20%; color:#ddffdd; position:fixed; z-index:9999; top: 115px;} 51 #JuzaShade {width:100%; height:100%; position:absolute; top:0px; left:0px; background:#000; -moz-opacity:0.5; -khtml-opacity:0.5; opacity:0.5; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); display:none; z-index:9998;} 52 #JuzaCloseBox { width:16px; height:16px; line-height:15px; background-color:#6DAA37; position:absolute; top:5px; right:10px; cursor:pointer;} 53 #jquery_local_img #relTag dt { display:none; } 45 54 .juzabar { margin: 12pt 0 6pt; font-size: 10pt; width: 100%; background-color: #353735 !important; text-align: center; } 55 .juzabar td.JS_active { display: none; } 56 table.juzabar td { width: 155px; } 46 57 legend .legend { padding: 0 10px; } 47 58 .maxIllustration { left:20px; margin-bottom:35px; max-width:100% !important; position:relative; top:30px; width:100% !important; } 48 .maxIllustration a { overflow: hidden; display: block; position:relative; z-index:12; float:right; }59 .maxIllustration a { overflow: hidden; display: block; position:relative; z-index:12; float:right; max-height: auto; height: auto; width:auto; } 49 60 .middle_block h2, h2 { color: #6daa37; font-size:16px; text-align: center; } 50 61 .middle_block * { font-family:Verdana,Arial,Helvetica,sans-serif; font-size:11pt; text-align:left; } … … 63 74 #theHeader h1 { font-family:Verdana,Arial,Helvetica,sans-serif; font-size:60px; font-style:normal; font-weight:normal; line-height:0.89em; color: #fff;} 64 75 #theHeader p { font-family:Verdana,Arial,Helvetica,sans-serif; font-size:20px; letter-spacing:5px; line-height:2.1em; colour: #fff; } 65 #the_page #imageToolBar { top:-90px; } 76 #the_page #imageToolBar { top:0px; } 77 #theNotificationPage #menubar dl, #thePopuphelpPage #menubar dl { margin:0; } -
extensions/Juza/themeconf.inc.php
r4537 r4659 29 29 include_once(JUZA_PATH.'include/functions.inc.php'); 30 30 add_event_handler('loc_after_page_header', 'Juza_hook', 20); 31 add_event_handler('blockmanager_apply', 'Juza_tags'); 31 32 /* add_event_handler('init', 'remove_AkBookStyle_handlers', 50); */ 32 33 }
Note: See TracChangeset
for help on using the changeset viewer.