Revision 457
Added by Matthias over 18 years ago
| trunk/CHANGELOG | ||
|---|---|---|
| 14 | 14 |
24-Jan-2007 Christian Sommer |
| 15 | 15 |
! Replaced some core files to allow configuration of wbmailer via admin settings panel |
| 16 | 16 |
------------------------------------- 2.6.6 ------------------------------------- |
| 17 |
08-May-2007 Matthias Gallas |
|
| 18 |
+ Added wrapper to functions.php if mb_string is not available (Thanks to thorn) |
|
| 19 |
+ Added new functions page_css and page_javascript to the built in templates |
|
| 20 |
+ Added search highlight class to css files of the built in templates |
|
| 17 | 21 |
30-Apr-2007 Matthias Gallas |
| 18 | 22 |
# Fixed ticket #392; root_parent not being set correctly (Thanks to eggsurplus) |
| 19 | 23 |
10-Apr-2007 Matthias Gallas |
| trunk/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 |
} |
| trunk/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 |
|
| trunk/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; |
| trunk/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 |
|
| trunk/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; |
| trunk/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