? drupal-846542.patch
? sites/default/files
? sites/default/settings.php
? themes/.DS_Store
? themes/bartik/theme-settings.php
Index: themes/bartik/template.php
===================================================================
RCS file: /cvs/drupal/drupal/themes/bartik/template.php,v
retrieving revision 1.2
diff -u -p -r1.2 template.php
--- themes/bartik/template.php	11 Jul 2010 22:06:40 -0000	1.2
+++ themes/bartik/template.php	12 Jul 2010 14:36:33 -0000
@@ -22,6 +22,11 @@ function bartik_preprocess_html(&$variab
     $variables['classes_array'][] = 'footer-columns';
   }
 
+  // Toggle fixed or fluid width.
+  if (theme_get_setting('bartik_width') == 'fluid') {
+    $variables['classes_array'][] = 'fluid-width';
+  }
+
   // Add conditional stylesheets for IE
   drupal_add_css(path_to_theme() . '/css/ie.css', array('weight' => CSS_THEME, 'browsers' => array('IE' => 'lte IE 7', '!IE' => FALSE), 'preprocess' => FALSE));
   drupal_add_css(path_to_theme() . '/css/ie6.css', array('weight' => CSS_THEME, 'browsers' => array('IE' => 'IE 6', '!IE' => FALSE), 'preprocess' => FALSE));
Index: themes/bartik/css/layout.css
===================================================================
RCS file: /cvs/drupal/drupal/themes/bartik/css/layout.css,v
retrieving revision 1.1
diff -u -p -r1.1 layout.css
--- themes/bartik/css/layout.css	6 Jul 2010 05:25:51 -0000	1.1
+++ themes/bartik/css/layout.css	12 Jul 2010 14:36:33 -0000
@@ -1,7 +1,18 @@
 /* $Id: layout.css,v 1.1 2010/07/06 05:25:51 webchick Exp $ */
 
 /* ---------- Basic Layout Styles ----------- */
-
+/* Unset container width when we are using the "fluid width" option. */
+body.fluid-width #header div.section,
+body.fluid-width #navigation div.section,
+body.fluid-width #featured div.section,
+body.fluid-width #messages,
+body.fluid-width #main,
+body.fluid-width #triptych,
+body.fluid-width #footer-columns,
+body.fluid-width #footer {
+  width: auto;
+  max-width: 1270px;
+}
 #header div.section,
 #navigation div.section,
 #featured div.section,
@@ -28,10 +39,20 @@
   position: relative;
 }
 .one-sidebar #content {
-  width: 720px;
+  float: left;
+  width: 100%;
+  margin-left: -260px;
+}
+.one-sidebar #content .section {
+  margin-left: 260px;
+}
+.two-sidebars #content .section {
+  margin: 0 260px;
 }
 .two-sidebars #content {
-  width: 480px;
+  float: left;
+  width: 100%;
+  margin: 0 -260px;
 }
 .no-sidebars #content {
   width: 960px;
@@ -39,6 +60,7 @@
 }
 .sidebar {
   width: 240px;
+  z-index: 2;
 }
 #main-wrapper {
   min-height: 500px;
Index: themes/bartik/css/style.css
===================================================================
RCS file: /cvs/drupal/drupal/themes/bartik/css/style.css,v
retrieving revision 1.1
diff -u -p -r1.1 style.css
--- themes/bartik/css/style.css	6 Jul 2010 05:25:51 -0000	1.1
+++ themes/bartik/css/style.css	12 Jul 2010 14:36:34 -0000
@@ -1323,4 +1323,4 @@ div.admin-panel .description {
 }
 .overlay #preview #footer-wrapper {
   display: block;
-}
+}
\ No newline at end of file
