Revision 456
Added by Matthias over 17 years ago
branches/2.6.x/CHANGELOG | ||
---|---|---|
11 | 11 |
! = Update/Change |
12 | 12 |
|
13 | 13 |
------------------------------------- 2.6.6 ------------------------------------- |
14 |
08-May-2007 Matthias Gallas |
|
15 |
+ Added wrapper to functions.php if mb_string is not available (Thanks to thorn) |
|
16 |
+ Added new functions page_css and page_javascript to the built in templates |
|
17 |
+ Added search highlight class to css files of the built in templates |
|
14 | 18 |
30-Apr-2007 Matthias Gallas |
15 | 19 |
# Fixed ticket #392; root_parent not being set correctly (Thanks to eggsurplus) |
16 | 20 |
10-Apr-2007 Matthias Gallas |
branches/2.6.x/wb/templates/allcss/screen.css | ||
---|---|---|
72 | 72 |
font-size: 10px; |
73 | 73 |
vertical-align: middle; |
74 | 74 |
} |
75 |
.highlight { |
|
76 |
background-color: #D0D0D0; |
|
77 |
} |
|
75 | 78 |
.banner a { |
76 | 79 |
color: #FFFFFF; |
77 | 80 |
} |
branches/2.6.x/wb/templates/allcss/index.php | ||
---|---|---|
38 | 38 |
<meta name="keywords" content="<?php page_keywords(); ?>" /> |
39 | 39 |
<link href="<?php echo TEMPLATE_DIR; ?>/screen.css" rel="stylesheet" type="text/css" media="screen" /> |
40 | 40 |
<link href="<?php echo TEMPLATE_DIR; ?>/print.css" rel="stylesheet" type="text/css" media="print" /> |
41 |
<?php page_css(); ?> |
|
42 |
<?php page_javascript(); ?> |
|
41 | 43 |
</head> |
42 | 44 |
<body> |
43 | 45 |
|
branches/2.6.x/wb/templates/round/screen.css | ||
---|---|---|
74 | 74 |
.menu_current { |
75 | 75 |
font-weight: bold; |
76 | 76 |
} |
77 |
.highlight { |
|
78 |
background-color: #D0D0D0; |
|
79 |
} |
|
77 | 80 |
.border { |
78 | 81 |
font-size: 1px; |
79 | 82 |
height: 10px; |
branches/2.6.x/wb/templates/round/index.php | ||
---|---|---|
38 | 38 |
<meta name="keywords" content="<?php page_keywords(); ?>" /> |
39 | 39 |
<link href="<?php echo TEMPLATE_DIR; ?>/screen.css" rel="stylesheet" type="text/css" media="screen" /> |
40 | 40 |
<link href="<?php echo TEMPLATE_DIR; ?>/print.css" rel="stylesheet" type="text/css" media="print" /> |
41 |
<?php page_css(); ?> |
|
42 |
<?php page_javascript(); ?> |
|
41 | 43 |
</head> |
42 | 44 |
<body> |
43 | 45 |
|
branches/2.6.x/wb/templates/simple/screen.css | ||
---|---|---|
46 | 46 |
.current { |
47 | 47 |
font-weight: bold; |
48 | 48 |
} |
49 |
.highlight { |
|
50 |
background-color: #D0D0D0; |
|
51 |
} |
|
49 | 52 |
.content { |
50 | 53 |
background-color: #FFFFFF; |
51 | 54 |
padding: 20px; |
branches/2.6.x/wb/templates/simple/index.php | ||
---|---|---|
38 | 38 |
<meta name="keywords" content="<?php page_keywords(); ?>" /> |
39 | 39 |
<link href="<?php echo TEMPLATE_DIR; ?>/screen.css" rel="stylesheet" type="text/css" media="screen" /> |
40 | 40 |
<link href="<?php echo TEMPLATE_DIR; ?>/print.css" rel="stylesheet" type="text/css" media="print" /> |
41 |
<?php page_css(); ?> |
|
42 |
<?php page_javascript(); ?> |
|
41 | 43 |
</head> |
42 | 44 |
<body> |
43 | 45 |
|
Also available in: Unified diff
Added new functions page_css and page_javascript to the built in templates
Added search highlight class to css files of the built in templates