|
From: FlorinCB <ory...@us...> - 2008-08-27 05:18:18
|
Update of /cvsroot/mxbb/core/templates/prosilver In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv3560/templates/prosilver Modified Files: prosilver.cfg prosilver.css Log Message: some missing stuff from phpBB3 backend Index: prosilver.cfg =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/prosilver.cfg,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** prosilver.cfg 27 Apr 2008 18:40:25 -0000 1.7 --- prosilver.cfg 27 Aug 2008 05:17:40 -0000 1.8 *************** *** 66,74 **** $mx_images['mx_graphics']['admin_icons'] = file_exists( $mx_root_path . $current_template_path . "/images/admin_icons" ) ? $current_template_path . "/images/admin_icons" : ( file_exists( $mx_root_path . $cloned_template_path . "/images/admin_icons" ) ? $cloned_template_path . "/images/admin_icons" : $default_template_path . "/images/admin_icons" ); $mx_images['mx_graphics']['phpbb_icons'] = !empty($current_template_path) && file_exists( $phpbb_root_path . $current_template_path . "/images" ) ? $current_template_path . "/images" : ( !empty($cloned_template_path) && file_exists( $phpbb_root_path . $cloned_template_path . "/images" ) ? $cloned_template_path . "/images" : $default_template_path . "/images"); // // Prefix all paths to get full img URLs // ! $current_template_images = PORTAL_URL . $mx_images['mx_graphics']['general']; // Logo etc $current_template_page_images = PORTAL_URL . $mx_images['mx_graphics']['page_icons']; // Used by adminCP - Pages $current_template_block_images = PORTAL_URL . $mx_images['mx_graphics']['block_icons']; // Used by userCP block buttons --- 66,75 ---- $mx_images['mx_graphics']['admin_icons'] = file_exists( $mx_root_path . $current_template_path . "/images/admin_icons" ) ? $current_template_path . "/images/admin_icons" : ( file_exists( $mx_root_path . $cloned_template_path . "/images/admin_icons" ) ? $cloned_template_path . "/images/admin_icons" : $default_template_path . "/images/admin_icons" ); $mx_images['mx_graphics']['phpbb_icons'] = !empty($current_template_path) && file_exists( $phpbb_root_path . $current_template_path . "/images" ) ? $current_template_path . "/images" : ( !empty($cloned_template_path) && file_exists( $phpbb_root_path . $cloned_template_path . "/images" ) ? $cloned_template_path . "/images" : $default_template_path . "/images"); + $mx_images['mx_graphics']['mx_icons'] = !empty($current_template_path) && file_exists( $mx_root_path . $current_template_path . "/images" ) ? $current_template_path . "/images" : ( !empty($cloned_template_path) && file_exists( $mx_root_path . $cloned_template_path . "/images" ) ? cloned_template_path . "/images" : $default_template_path . "/images"); // // Prefix all paths to get full img URLs // ! $current_template_images = PORTAL_URL . $mx_images['mx_graphics']['general']; // Logo etc $current_template_page_images = PORTAL_URL . $mx_images['mx_graphics']['page_icons']; // Used by adminCP - Pages $current_template_block_images = PORTAL_URL . $mx_images['mx_graphics']['block_icons']; // Used by userCP block buttons *************** *** 76,80 **** $current_template_admin_images = PORTAL_URL . $mx_images['mx_graphics']['admin_icons']; // Internal graphics for the mxBB adminCP $current_template_phpbb_images = PHPBB_URL . $mx_images['mx_graphics']['phpbb_icons']; // phpBB graphics template ! $current_template_theme_images = PORTAL_URL . $current_template_path . '/theme/images'; // --- 77,81 ---- $current_template_admin_images = PORTAL_URL . $mx_images['mx_graphics']['admin_icons']; // Internal graphics for the mxBB adminCP $current_template_phpbb_images = PHPBB_URL . $mx_images['mx_graphics']['phpbb_icons']; // phpBB graphics template ! $current_template_theme_images = PORTAL_URL . $mx_images['mx_graphics']['mx_icons']; // Index: prosilver.css =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/prosilver.css,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** prosilver.css 14 Feb 2008 09:34:54 -0000 1.14 --- prosilver.css 27 Aug 2008 05:17:40 -0000 1.15 *************** *** 359,361 **** .fieldset1 FORM * { font-size: 1.0em; ! } \ No newline at end of file --- 359,368 ---- .fieldset1 FORM * { font-size: 1.0em; ! } ! ! .row1 { background-color: #ECF3F7; } /* .bg1 */ ! .row2 { background-color: #e1ebf2; } /* .bg2 */ ! .row2 { background-color: #cadceb; } /* .bg3 */ ! .row4 { background-color: #EFEFEF; } ! .row5 { background-color: #DEE3E7; } ! .row6 { background-color: #D1D7DC; } \ No newline at end of file |