- fix formatting in php files
- remove code from fixed layout stylesheets
- patch by Cyclegeek (see http://www.reactos.org/forum/viewtopic.php?f=18&t=11046 for details)


svn path=/branches/WebsiteRevamp/; revision=719
This commit is contained in:
Maciej Bialas 2012-03-15 22:29:28 +00:00
parent f8d9635532
commit f87687edba
5 changed files with 106 additions and 441 deletions
www/www.reactos.org/drupal/sites/all/themes/zen_reactos

@ -1,65 +0,0 @@
/**
* @file
* RTL companion for the layout-fixed.css file.
*/
/*
* Content
*/
#content,
.no-sidebars #content {
float: right;
margin-left: -960px; /* Negative value of #content's width + right margin. */
margin-right: 0;
}
.sidebar-first #content {
margin-left: -960px; /* Negative value of #content's width + right margin. */
margin-right: 200px; /* The width of .region-sidebar-first. */
}
.sidebar-second #content {
margin-left: -760px; /* Negative value of #content's width + right margin. */
margin-right: 0;
}
.two-sidebars #content {
margin-left: -760px; /* Negative value of #content's width + right margin. */
margin-right: 200px; /* The width of .region-sidebar-first */
}
/*
* Navigation
*/
#navigation {
float: right;
margin-left: -100%; /* Negative value of #navigation's width + right margin. */
margin-right: 0;
}
/*
* First sidebar
*/
.region-sidebar-first {
float: right;
margin-left: -200px; /* Negative value of .region-sidebar-first's width + right margin. */
margin-right: 0;
}
.region-sidebar-first .section {
margin: 0 0 0 20px;
}
/*
* Second sidebar
*/
.region-sidebar-second {
float: right;
margin-left: -960px; /* Negative value of .region-sidebar-second's width + right margin. */
margin-right: 760px; /* Width of content + sidebar-first. */
}
.region-sidebar-second .section {
margin: 0 20px 0 0;
}

@ -1,190 +0,0 @@
/**
* @file
* Layout Styling (DIV Positioning)
*
* Define CSS classes to create a table-free, 3-column, 2-column, or single
* column layout depending on whether blocks are enabled in the left or right
* columns.
*
* This layout is based on the Zen Columns layout method.
* http://drupal.org/node/201428
*
* Only CSS that affects the layout (positioning) of major elements should be
* listed here. Such as:
* display, position, float, clear, width, height, min-width, min-height
* margin, border, padding, overflow
*/
/*
* Body
*/
body {
}
#page-wrapper,
.region-bottom {
/*
* If you want to make the page a fixed width and centered in the viewport,
* this is the standards-compliant way to do that. See also the ie6.css file
* for the necessary IE5/IE6quirks hack to center a div.
*/
margin-left: auto;
margin-right: auto;
width: 960px;
}
#page {
}
/*
* Header
*/
#header {
}
#header .section {
}
.region-header {
}
/*
* Main (container for everything else)
*/
#main-wrapper {
position: relative;
}
#main {
}
/*
* Content
*/
#content,
.no-sidebars #content {
float: left; /* LTR */
width: 960px;
margin-left: 0; /* LTR */
margin-right: -960px; /* LTR */ /* Negative value of #content's width + left margin. */
padding: 0; /* DO NOT CHANGE. Add padding or margin to #content .section. */
}
.sidebar-first #content {
width: 760px;
margin-left: 200px; /* LTR */ /* The width of .region-sidebar-first. */
margin-right: -960px; /* LTR */ /* Negative value of #content's width + left margin. */
}
.sidebar-second #content {
width: 760px;
margin-left: 0; /* LTR */
margin-right: -760px; /* LTR */ /* Negative value of #content's width + left margin. */
}
.two-sidebars #content {
width: 560px;
margin-left: 200px; /* LTR */ /* The width of .region-sidebar-first */
margin-right: -760px; /* LTR */ /* Negative value of #content's width + left margin. */
}
#content .section {
margin: 0;
padding: 0;
}
/*
* Navigation
*/
#navigation {
float: left; /* LTR */
width: 100%;
margin-left: 0; /* LTR */
margin-right: -100%; /* LTR */ /* Negative value of #navigation's width + left margin. */
padding: 0; /* DO NOT CHANGE. Add padding or margin to #navigation .section. */
height: 3em; /* The navigation can have any arbritrary height. We picked one
that is the line-height plus 1em: 1.3 + 1 = 2.3
Set this to the same value as the margin-top below. */
}
.with-navigation #content,
.with-navigation .region-sidebar-first,
.with-navigation .region-sidebar-second {
margin-top: 3em; /* Set this to the same value as the navigation height above. */
}
#navigation .section {
}
/*
* First sidebar
*/
.region-sidebar-first {
float: left; /* LTR */
width: 200px;
margin-left: 0; /* LTR */
margin-right: -200px; /* LTR */ /* Negative value of .region-sidebar-first's width + left margin. */
padding: 0; /* DO NOT CHANGE. Add padding or margin to .region-sidebar-first .section. */
}
.region-sidebar-first .section {
margin: 0 20px 0 0; /* LTR */
padding: 0;
}
/*
* Second sidebar
*/
.region-sidebar-second {
float: left; /* LTR */
width: 200px;
margin-left: 760px; /* LTR */ /* Width of content + sidebar-first. */
margin-right: -960px; /* LTR */ /* Negative value of .region-sidebar-second's width + left margin. */
padding: 0; /* DO NOT CHANGE. Add padding or margin to .region-sidebar-second .section. */
}
.region-sidebar-second .section {
margin: 0 0 0 20px; /* LTR */
padding: 0;
}
/*
* Footer
*/
.region-footer {
}
/*
* Page bottom
*/
.region-bottom /* See also the #page-wrapper declaration above that this div shares. */ {
}
/*
* Prevent overflowing content
*/
#header,
#content,
#navigation,
.region-sidebar-first,
.region-sidebar-second,
.region-footer,
.region-bottom {
overflow: visible;
word-wrap: break-word; /* A very nice CSS3 property */
}
/*
* If a div.clearfix doesn't have any content after it and its bottom edge
* touches the bottom of the viewport, Firefox and Safari will mistakenly
* place several pixels worth of space between the bottom of the div and the
* bottom of the viewport. Uncomment this CSS property to fix this.
* Note: with some over-large content, this property might cause scrollbars
* to appear on the #page-wrapper div.
*/
/*
#page-wrapper {
overflow-y: hidden;
}
*/

@ -135,48 +135,49 @@ function zen_reactos_preprocess_comment(&$variables, $hook) {
* The name of the template being rendered ("block" in this case.)
*/
function zen_reactos_preprocess_block(&$variables, $hook) {
// apply ReactOS' version number token
if (token_scan($variables['block']->title))
{
$variables['block']->subject = token_replace($variables['block']->title, array('custom'), array('clear'=>true));
}
// Apply ReactOS' version number token
if (token_scan($variables['block']->title)) {
$variables['block']->subject = token_replace($variables['block']->title, array('custom'), array('clear' => TRUE));
}
}
// */
function zen_reactos_form_alter(&$form, &$form_state, $form_id) {
if ($form_id == 'search_block_form') {
$form['search_block_form']['#default_value'] = t('Search'); // Set a default value for the textfield
$form['actions']['submit']['#value'] = t('>'); // Change the text on the submit button
// Add extra attributes to the text box
$form['search_block_form']['#attributes']['onblur'] = "if (this.value == '') {this.value = '".t('Search')."';}";
$form['search_block_form']['#attributes']['onfocus'] = "if (this.value == '".t('Search')."') {this.value = '';}";
}
if ($form_id == 'search_block_form') {
// Set a default value for the textfield
$form['search_block_form']['#default_value'] = t('Search');
// Change the text on the submit button
$form['actions']['submit']['#value'] = t('>');
// Add extra attributes to the text box
$form['search_block_form']['#attributes']['onblur'] = "if (this.value == '') {this.value = '" . t('Search') . "';}";
$form['search_block_form']['#attributes']['onfocus'] = "if (this.value == '" . t('Search')."') {this.value = '';}";
}
}
function zen_reactos_form_user_register_form_alter(&$form, &$form_state, $form_id) {
$form['#theme'] = 'user_register_form';
$form['#theme'] = 'user_register_form';
}
function zen_reactos_form_user_login_alter(&$form, &$form_state, $form_id) {
$form['#theme'] = 'user_login';
$form['#theme'] = 'user_login';
}
function zen_reactos_form_user_pass_alter(&$form, &$form_state, $form_id) {
$form['#theme'] = 'user_pass';
$form['#theme'] = 'user_pass';
}
function zen_reactos_theme($existing, $type, $theme, $path) {
return array(
'user_register_form' => array(
'render element' => 'form',
'template' => 'templates/user-register-form'
),
'user_login' => array(
'render element' => 'form',
'template' => 'templates/user-login'
),
'user_pass' => array(
'render element' => 'form',
'template' => 'templates/user-pass'
),
);
}
return array(
'user_register_form' => array(
'render element' => 'form',
'template' => 'templates/user-register-form'
),
'user_login' => array(
'render element' => 'form',
'template' => 'templates/user-login'
),
'user_pass' => array(
'render element' => 'form',
'template' => 'templates/user-pass'
),
);
}

@ -1,7 +1,7 @@
<?php
/**
* @file
* Zen theme's implementation to display a single Drupal page.
* ReactOS theme's implementation to display a single Drupal page.
*
* Available variables:
*
@ -19,17 +19,10 @@
* when linking to the front page. This includes the language domain or
* prefix.
* - $logo: The path to the logo image, as defined in theme configuration.
* - $site_name: The name of the site, empty when display has been disabled
* in theme settings.
* - $site_slogan: The slogan of the site, empty when display has been disabled
* in theme settings.
*
* Navigation:
* - $main_menu (array): An array containing the Main menu links for the
* site, if they have been configured.
* - $secondary_menu (array): An array containing the Secondary menu links for
* the site, if they have been configured.
* - $secondary_menu_heading: The title of the menu used by the secondary links.
* - $breadcrumb: The breadcrumb trail for the current page.
*
* Page content (in order of occurrence in the default page.tpl.php):
@ -58,158 +51,83 @@
* - $page['content']: The main content of the current page.
* - $page['sidebar_first']: Items for the first sidebar.
* - $page['sidebar_second']: Items for the second sidebar.
* - $page['header']: Items for the header region.
* - $page['footer']: Items for the footer region.
* - $page['bottom']: Items to appear at the bottom of the page below the footer.
*
* @see template_preprocess()
* @see template_preprocess_page()
* @see zen_preprocess_page()
* @see template_process()
*
*
*
* <img src="<?php print base_path().path_to_theme(); ?>/images/button_comp_home.jpg" />
*/
?>
<div id="page-wrapper">
<div id="page">
<div id="page-wrapper"><div id="page">
<div id="header">
<img id="logo" src="<?php print $logo; ?>" alt="<?php print t('Home'); ?>" />
<div id="topMenu">
<div id="main-menu">
<?php
/* Render the main menu links */
$html = "";
foreach($main_menu as $link) {
$href = $link["href"];
$title = $link["title"];
$html .= "<a href=\"/?q=$href\">$title</a>";
$html .= " | ";
}
$html = substr($html, 0, -3);
echo $html;
?>
</div>
</div><!-- /#topMenu -->
</div><!-- /#header -->
<!-- main area -->
<div class="wfcyan dtable w100">
<div class="wfpink dtrow">
<!-- left sidebar -->
<div class="wfred dtcell dtcell-vtop">
<?php print render($page['sidebar_first']); ?>
</div>
<!-- main content -->
<div id="content" class="column wfgreen dtcell dtcell-vtop">
<div class="section">
<?php print render($page['highlighted']); ?>
<?php print $breadcrumb; ?>
<a id="main-content"></a>
<?php print render($title_prefix); ?>
<?php if ($title): ?>
<h1 class="title" id="page-title"><?php print $title; ?></h1>
<?php endif; ?>
<?php print render($title_suffix); ?>
<?php print $messages; ?>
<?php if ($tabs = render($tabs)): ?>
<div class="tabs"><?php print $tabs; ?></div>
<?php endif; ?>
<?php print render($page['help']); ?>
<?php if ($action_links): ?>
<ul class="action-links"><?php print render($action_links); ?></ul>
<?php endif; ?>
<?php print render($page['content']); ?>
<?php print render($page['content_bottom']); ?>
<?php print $feed_icons; ?>
</div>
</div>
<?php
if($is_front) {
?>
<!-- right sidebar -->
<div class="wfblue dtcell dtcell-vtop">
<?php print render($page['sidebar_second']); ?>
</div>
<?php
}
?>
</div>
</div>
<!-- footer -->
<div id="footer">
<p><?php print t("ReactOS is a registered trademark or a trademark of ReactOS Foundation in the United States and other countries."); ?></p>
</div>
</div><!-- #page -->
<?php /*
<a style="border: 1px solid green" href="<?php print $front_page; ?>" title="<?php print t('Home'); ?>" rel="home" id="logo"><img src="<?php print $logo; ?>" alt="<?php print t('Home'); ?>" /></a>
if ($site_name || $site_slogan): ?>
<div id="name-and-slogan">
<?php if ($site_name): ?>
<?php if ($title): ?>
<div id="site-name"><strong>
<a href="<?php print $front_page; ?>" title="<?php print t('Home'); ?>" rel="home"><span><?php print $site_name; ?></span></a>
</strong></div>
<?php else: / Use h1 when the content title is empty / ?>
<h1 id="site-name">
<a href="<?php print $front_page; ?>" title="<?php print t('Home'); ?>" rel="home"><span><?php print $site_name; ?></span></a>
</h1>
<?php endif; ?>
<?php endif; ?>
<?php if ($site_slogan): ?>
<div id="site-slogan"><?php print $site_slogan; ?></div>
<?php endif; ?>
</div><!-- /#name-and-slogan -->
<?php endif;*/ ?>
<?php /* print render($page['header']); */ ?>
<?php /*
<div id="main-wrapper"><div id="main" class="clearfix<?php if ($page['navigation']) { print ' with-navigation'; } ?>">
<!-- /.section, /#content -->
<div id="content" class="column"><div class="section">
<?php print render($page['highlighted']); ?>
<?php print $breadcrumb; ?>
<a id="main-content"></a>
<?php print render($title_prefix); ?>
<?php if ($title): ?>
<h1 class="title" id="page-title"><?php print $title; ?></h1>
<?php endif; ?>
<?php print render($title_suffix); ?>
<?php print $messages; ?>
<?php if ($tabs = render($tabs)): ?>
<div class="tabs"><?php print $tabs; ?></div>
<?php endif; ?>
<?php print render($page['help']); ?>
<?php if ($action_links): ?>
<ul class="action-links"><?php print render($action_links); ?></ul>
<?php endif; ?>
<?php print render($page['content']); ?>
<?php print render($page['content_bottom']); ?>
<?php print $feed_icons; ?>
</div></div>
<!-- /.section, /#content -->
<?php if ($page['navigation'] ): ?>
<div id="navigation"><div class="section clearfix"><?php print render($page['navigation']); ?></div></div><!-- /.section, /#navigation -->
<div id="header">
<?php if ($logo): ?>
<img id="logo" src="<?php print $logo; ?>" alt="<?php print t('Home'); ?>" />
<?php endif; ?>
<?php if ($main_menu): ?>
<div id="topMenu">
<div id="main-menu">
<?php
/* Render the main menu links */
$html = '';
foreach ($main_menu as $link) {
$html .= '<a href="'. $base_path . $link["href"] . '">';
$html .= $link["title"] . '</a>' . ' | ';
}
/* Remove the extra separator */
$html = substr($html, 0, -3);
echo $html;
?>
</div>
</div><!-- /#topMenu -->
<?php endif; ?>
</div><!-- /#header -->
<!-- main area -->
<div id="main-wrapper" class="wfcyan dtable"><div id="main" class="wfpink dtrow">
</div></div><!-- /#main, /#main-wrapper -->
<!-- left sidebar -->
<div class="wfred dtcell dtcell-vtop">
<?php print render($page['sidebar_first']); ?>
</div>
*/ ?>
<div id="content" class="column wfgreen dtcell dtcell-vtop"><div class="section">
<?php print render($page['highlighted']); ?>
<?php print $breadcrumb; ?>
<a id="main-content"></a>
<?php print render($title_prefix); ?>
<?php if ($title): ?>
<h1 class="title" id="page-title"><?php print $title; ?></h1>
<?php endif; ?>
<?php print render($title_suffix); ?>
<?php print $messages; ?>
<?php if ($tabs = render($tabs)): ?>
<div class="tabs"><?php print $tabs; ?></div>
<?php endif; ?>
<?php print render($page['help']); ?>
<?php if ($action_links): ?>
<ul class="action-links"><?php print render($action_links); ?></ul>
<?php endif; ?>
<?php print render($page['content']); ?>
<?php print $feed_icons; ?>
</div></div><!-- /.section, /#content -->
<?php if ($is_front): ?>
<!-- right sidebar -->
<div class="wfblue dtcell dtcell-vtop">
<?php print render($page['sidebar_second']); ?>
</div>
<?php endif; ?>
</div></div><!-- /#main, /#main-wrapper -->
<div id="footer">
<p><?php print t("ReactOS is a registered trademark or a trademark of ReactOS Foundation in the United States and other countries."); ?></p>
</div><!-- /#footer -->
</div></div><!-- /#page, /#page-wrapper -->
<?php print render($page['bottom']); ?>

@ -37,7 +37,7 @@ stylesheets[all][] = css/html-reset.css
stylesheets[all][] = css/wireframes.css
stylesheets[all][] = css/layout-liquid.css
stylesheets[all][] = css/page-backgrounds.css
stylesheets[all][] = css/tabs.css
;stylesheets[all][] = css/tabs.css
stylesheets[all][] = css/pages.css
stylesheets[all][] = css/blocks.css
stylesheets[all][] = css/navigation.css
@ -46,7 +46,8 @@ stylesheets[all][] = css/nodes.css
stylesheets[all][] = css/comments.css
stylesheets[all][] = css/forms.css
stylesheets[all][] = css/fields.css
stylesheets[all][] = css/reactos-style.css
stylesheets[all][] = css/reactos-style.css
stylesheets[all][] = css/system.menus.css
stylesheets[print][] = css/print.css
; Example of adding handheld stylesheets. The iPhone's preferred media type
@ -83,12 +84,12 @@ stylesheets-conditional[lte IE 6][all][] = css/ie6.css
regions[help] = Help
regions[sidebar_first] = First sidebar
regions[sidebar_second] = Second sidebar
regions[navigation] = Navigation bar
;regions[navigation] = Navigation bar
regions[highlighted] = Highlighted
regions[content] = Content
regions[header] = Header
regions[page_top] = Page top
regions[content_bottom] = Content bottom
;regions[header] = Header
;regions[footer] = Footer
regions[bottom] = Page bottom
@ -100,13 +101,13 @@ regions[content_bottom] = Content bottom
; http://drupal.org/node/171205#features
features[] = logo
; features[] = name
; features[] = slogan
;features[] = name
;features[] = slogan
features[] = node_user_picture
features[] = comment_user_picture
features[] = favicon
features[] = main_menu
features[] = secondary_menu
;features[] = secondary_menu