Index: color/color.inc =================================================================== RCS file: /cvs/drupal-contrib/contributions/themes/bartik/color/color.inc,v retrieving revision 1.4 diff -u -p -r1.4 color.inc --- color/color.inc 28 Apr 2010 18:13:10 -0000 1.4 +++ color/color.inc 17 May 2010 11:50:12 -0000 @@ -13,6 +13,8 @@ $info = array( 'bottom' => t('Header bottom'), 'text' => t('Text color'), 'sidebar' => t('Sidebar background'), + 'sidebarborders' => t('Sidebar borders'), + 'footer' => t('Footer background'), ), // Pre-defined color schemes. 'schemes' => array( @@ -25,6 +27,8 @@ $info = array( 'bottom' => '#3d3d3d', 'text' => '#3b3b3b', 'sidebar' => '#feffff', + 'sidebarborders' => '#d0d0d0', + 'footer' => '#161617', ), ), 'Blue Lagoon' => array( @@ -36,6 +40,8 @@ $info = array( 'bottom' => '#5ab5ee', 'text' => '#3b3b3b', 'sidebar' => '#feffff', + 'sidebarborders' => '#4377ac', + 'footer' => '#00143d', ), ), 'Plum' => array( @@ -47,6 +53,8 @@ $info = array( 'bottom' => '#6b2454', 'text' => '#2c233f', 'sidebar' => '#f0f0f0', + 'sidebarborders' => '#4e2e44', + 'footer' => '#452632', ), ), 'Fresh' => array( @@ -58,6 +66,8 @@ $info = array( 'bottom' => '#5b8b15', 'text' => '#585858', 'sidebar' => '#feffff', + 'sidebarborders' => '#5899b0', + 'footer' => '#2f4016', ), ), ), Index: color/preview.css =================================================================== RCS file: /cvs/drupal-contrib/contributions/themes/bartik/color/preview.css,v retrieving revision 1.2 diff -u -p -r1.2 preview.css --- color/preview.css 23 Apr 2010 05:55:00 -0000 1.2 +++ color/preview.css 17 May 2010 11:50:12 -0000 @@ -50,3 +50,19 @@ .sidebar .section { padding: 0 10px; } +#preview #footer-wrapper { + padding: 35px 20px 30px; +} +#preview #footer-firstcolumn, +#preview #footer-secondcolumn, +#preview #footer-thirdcolumn, +#preview #footer-fourthcolumn { + padding: 0 10px; + width: 220px; + display: inline; + float: left; /* LTR */ + position: relative; +} +#preview #footer { + width: 940px; +} \ No newline at end of file Index: color/preview.html =================================================================== RCS file: /cvs/drupal-contrib/contributions/themes/bartik/color/preview.html,v retrieving revision 1.2 diff -u -p -r1.2 preview.html --- color/preview.html 23 Apr 2010 05:55:00 -0000 1.2 +++ color/preview.html 17 May 2010 11:50:12 -0000 @@ -60,4 +60,46 @@ + + + Index: color/preview.js =================================================================== RCS file: /cvs/drupal-contrib/contributions/themes/bartik/color/preview.js,v retrieving revision 1.2 diff -u -p -r1.2 preview.js --- color/preview.js 23 Apr 2010 05:55:00 -0000 1.2 +++ color/preview.js 17 May 2010 11:50:13 -0000 @@ -20,6 +20,11 @@ // Sidebar background $('#preview .sidebar .block', form).css('background-color', $('#palette input[name="palette[sidebar]"]', form).val()); + // Footer background + $('#preview #footer-wrapper', form).css('background-color', $('#palette input[name="palette[footer]"]', form).val()); + + $('#preview .sidebar .block', form).css('border-color', $('#palette input[name="palette[sidebarborders]"]', form).val()); + // CSS3 Gradients var gradient_start = $('#palette input[name="palette[top]"]', form).val(); var gradient_end = $('#palette input[name="palette[bottom]"]', form).val(); Index: css/colors.css =================================================================== RCS file: /cvs/drupal-contrib/contributions/themes/bartik/css/colors.css,v retrieving revision 1.2 diff -u -p -r1.2 colors.css --- css/colors.css 28 Apr 2010 07:07:50 -0000 1.2 +++ css/colors.css 17 May 2010 11:50:13 -0000 @@ -1,7 +1,7 @@ /* $Id$ */ /** - * Styles and colors that the color module will modify. + * Styles and colors that the color module modifies. */ body { background-color: #161617; @@ -29,4 +29,8 @@ a:active { } .sidebar .block { background-color: #feffff; + border-color: #d0d0d0; +} +#footer-wrapper { + background: #161617; } Index: css/style.css =================================================================== RCS file: /cvs/drupal-contrib/contributions/themes/bartik/css/style.css,v retrieving revision 1.66 diff -u -p -r1.66 style.css --- css/style.css 17 May 2010 04:43:11 -0000 1.66 +++ css/style.css 17 May 2010 11:50:13 -0000 @@ -559,7 +559,7 @@ h1#page-title, /* ------------------ Sidebar ----------------- */ .sidebar .block { - border: 1px solid #d0d0d0; + border: 1px solid; padding: 15px 20px; margin: 20px 0; } @@ -636,7 +636,6 @@ h1#page-title, /* ------------------ Footer ------------------ */ #footer-wrapper { - background: #161617 url(../images/footer-background.jpg) repeat-x top center; color: #7c7e84; font-size: 90%; } @@ -1107,7 +1106,6 @@ div.admin-panel .description { .overlay #page-title, .overlay #featured, .overlay #sidebar-first, -.overlay #footer-wrapper, .overlay #triptych-wrapper { display: none; }