source: extensions/floOS/theme/glass/themeconf.inc.php @ 3689

Last change on this file since 3689 was 3689, checked in by flop25, 15 years ago

comments work : thx to Grum for his help

File size: 1.8 KB
Line 
1<?php
2$themeconf = array(
3  'template' => 'floOS',
4  'theme' => 'glass',
5  'template_dir' => 'template/floOS',
6  'icon_dir' => 'template/floOS/icon',
7  'admin_icon_dir' => 'template/floOS/icon/admin',
8  'mime_icon_dir' => 'template/floOS/icon/mimetypes/',
9  'local_head' => '  <script type="text/javascript" src="template-common/lib/jquery.js"></script>
10  <script type="text/javascript">
11jQuery(document).ready(function(){
12        $(".titre_acordeon").click(function() {
13                $(this).next().toggle("medium");
14        }).next().hide();
15});
16jQuery(document).ready(function(){
17        $(".titre_acordeon_0").click(function() {
18                $(this).next().toggle("medium");
19        }).next().show();
20});
21 
22  </script>
23    <!--[if lt IE 7]>
24<style>
25        #menubar dl, #section_in {
26        background:  #FFF!important;
27        }
28        /* contenu "section" */
29        #section_up_left, #section_up, #section_up_right, #section_left, #section_bottom_left, #section_bottom, #section_bottom_right, #section_right{
30        background:none!important;
31        }
32</style>
33<![endif]-->
34<!--[if IE 7]>
35<style>
36        #menubar dl, #section_in {
37        background:  #FFF!important;
38        }
39        /* contenu "section" */
40        #section_up_left, #section_up, #section_up_right, #section_left, #section_bottom_left, #section_bottom, #section_bottom_right, #section_right{
41        background:none!important;
42        }
43        BODY#theCommentsPage .content,
44        BODY#theUploadPage .content,
45        BODY#theRegisterPage .content,
46        BODY#theIdentificationPage .content,
47        BODY#theProfilePage .content,
48        BODY#theSearchPage .content,
49        BODY#theAboutPage .content,
50        BODY#thePopuphelpPage .content,
51        BODY#thePasswordPage .content,
52        BODY#theNotificationPage .content,
53        BODY#theTagsPage .content,
54        BODY#theNBMPage .content,
55        #action_pict,
56        #comments
57        {
58        background:  #FFF!important;
59        }
60</style>
61<![endif]-->',
62);
63?>
Note: See TracBrowser for help on using the repository browser.