From 648c4689273647c321dd6e3979d910282e9a9339 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Wed, 26 Oct 2011 23:11:56 -0700 Subject: breaking down the main page into subpages for easier, more comprehensive documentation --- docs/scaffolding.html | 383 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 383 insertions(+) create mode 100644 docs/scaffolding.html (limited to 'docs/scaffolding.html') diff --git a/docs/scaffolding.html b/docs/scaffolding.html new file mode 100644 index 000000000..9334e830c --- /dev/null +++ b/docs/scaffolding.html @@ -0,0 +1,383 @@ + + + + + Bootstrap, from Twitter + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+

Scaffolding

+

Responsive 12-column grid and fixed- and fluid-width layouts

+
+ + + +
+ + +

Default 940px grid

+
+
1
+
1
+
1
+
1
+
1
+
1
+
1
+
1
+
1
+
1
+
1
+
1
+
+
+
4
+
4
+
4
+
+
+
4
+
8
+
+
+
6
+
6
+
+
+
12
+
+ +
+
+

The default grid system provided as part of Bootstrap is a 940px-wide, 12-column grid.

+

It also has three responsive variations for various devices and resolutions: phone, tablet, and large widescreen desktops.

+
+
+
+<div class="row">
+  <div class="span4">...</div>
+  <div class="span8">...</div>
+</div>
+
+
+
+

As shown here, a basic layout can be created with two "columns," each spanning a number of the 12 foundational columns we defined as part of our grid system.

+
+
+ +

Offsetting columns

+
+
4
+
4 offset 4
+
+
+
3 offset 3
+
3 offset 3
+
+
+
8 offset 4
+
+ +
+ +

Nesting columns

+
+
+

With the static (non-fluid) grid system in Bootstrap, nesting is easy. To nest your content, just add a new .row and set of .span* columns within an existing .span* column.

+

Example

+
+
+ Level 1 of column +
+
+ Level 2 +
+
+ Level 2 +
+
+
+
+
+
+
+<div class="row">
+  <div class="span12">
+    Level 1 of column
+    <div class="row">
+      <div class="span6">Level 2</div>
+      <div class="span6">Level 2</div>
+    </div>
+  </div>
+</div>
+
+
+
+ +

Grid customization

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
VariableDefault valueDescription
@gridColumns16The number of columns within the grid
@gridColumnWidth40pxThe width of each column within the grid
@gridGutterWidth20pxThe negative space between each column
@siteWidthComputed sum of all columns and guttersWe use some basic match to count the number of columns and gutters and set the width of the .fixed-container() mixin.
+
+
+

Variables in LESS

+

Built into Bootstrap are a handful of variables for customizing the default 940px grid system, documented above. All variables for the grid are stored in mixins.less.

+
+
+

How to customize

+

Modifying the grid means changing the three @grid* variables and recompiling Bootstrap. Change the grids in the preboot.less file and use one of the four ways documented to recompile.

+
+
+

Staying responsive

+

Customization of the grid only works at the default level, the 940px grid. To maintain the responsive aspects of Bootstrap, you'll also have to customize the grids in responsive.less.

+
+
+ +
+ + + + +
+ + +
+
+

Fixed layout

+

The default and simple 940px-wide, centered layout for just about any website or page provided by a single <div.container>.

+
+
+
+
+<body>
+  <div class="container">
+    ...
+  </div>
+</body>
+
+
+
+

Fluid layout

+

An alternative, flexible fluid page structure with min- and max-widths and a left-hand sidebar. Great for apps and docs.

+
+
+
+
+
+<body>
+  <div class="container-fluid">
+    <div class="sidebar">
+      ...
+    </div>
+    <div class="content">
+      ...
+    </div>
+  </div>
+</body>
+
+
+
+
+ + + + + +
+ + +
+
+ Responsive devices +
+
+

Supported devices

+

Bootstrap supports a handful of media queries to help make your projects more appropriate on different devices and screen resolutions. Here's what's included:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
LabelLayout widthColumn widthGutter width
Smartphones480px and belowFluid columns, no fixed widths
Portrait tablets480px to 768pxFluid columns, no fixed widths
Landscape tablets768px to 940px44px20px
Default940px and up60px20px
Large display1210px and up70px30px
+ +

What they do

+

Media queries allow for custom CSS based on a number of conditions—ratios, widths, display type, etc—but usually focuses around min-width and max-width.

+
    +
  • Modify the width of column in our grid
  • +
  • Stack elements instead of float wherever necessary
  • +
  • Resize headings and text to be more appropriate for devices
  • +
+
+
+ +
+ + +

Using the media queries

+
+
+

Bootstrap doesn't automatically include these media queries, but understanding and adding them is very easy and requires minimal setup. You have a few options for including the responsive features of Bootstrap:

+
    +
  1. Use the compiled responsive version, bootstrap.reponsive.css
  2. +
  3. Add @import "responsive.less" and recompile Bootstrap
  4. +
  5. Compile responsive.less as a separate file and include that
  6. +
+

Why not just include it? Truth be told, not everything needs to be responsive. Instead of encouraging developers to remove this feature, we figure it best to enable it.

+
+
+
+  // Landscape phones and down
+  @media (max-width: 480px) { ... }
+
+  // Landscape phone to portrait tablet
+  @media (min-width: 480px) and (max-width: 768px) { ... }
+
+  // Portrait tablet to landscape and desktop
+  @media (min-width: 768px) and (max-width: 940px) { ... }
+
+  // Large desktop
+  @media (min-width: 1210px) { .. }
+
+
+
+
+ + + + + +
+ + + + + + + + + + + + + + -- cgit v1.2.3 From b4c894961c0b75361ead496f1686eb3cf41c5c97 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Wed, 26 Oct 2011 23:24:22 -0700 Subject: address issue #414 and fix up a number of docs loose ends --- docs/scaffolding.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/scaffolding.html') diff --git a/docs/scaffolding.html b/docs/scaffolding.html index 9334e830c..2a5ae8bc6 100644 --- a/docs/scaffolding.html +++ b/docs/scaffolding.html @@ -234,7 +234,7 @@

Fluid layout

-

An alternative, flexible fluid page structure with min- and max-widths and a left-hand sidebar. Great for apps and docs.

+

<div class="fluid-container"> gives flexible page structure, min- and max-widths, and a left-hand sidebar. It's great for apps and docs.

-- cgit v1.2.3 From 2764cfda6dbda56b4a50561fb8cd2a8be86dc096 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Fri, 28 Oct 2011 18:38:06 -0700 Subject: remove html from body background --- docs/scaffolding.html | 1 + 1 file changed, 1 insertion(+) (limited to 'docs/scaffolding.html') diff --git a/docs/scaffolding.html b/docs/scaffolding.html index 2a5ae8bc6..de612a074 100644 --- a/docs/scaffolding.html +++ b/docs/scaffolding.html @@ -53,6 +53,7 @@ +
-- cgit v1.2.3 From 3f512adf953da3a3fbbfca18b138fb6659f2b77f Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sun, 30 Oct 2011 20:14:27 -0700 Subject: updated docs and type styles for blockquotes and a few fixes for type --- docs/scaffolding.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/scaffolding.html') diff --git a/docs/scaffolding.html b/docs/scaffolding.html index de612a074..4a5aa9a0b 100644 --- a/docs/scaffolding.html +++ b/docs/scaffolding.html @@ -221,7 +221,7 @@

Fixed layout

-

The default and simple 940px-wide, centered layout for just about any website or page provided by a single <div.container>.

+

The default and simple 940px-wide, centered layout for just about any website or page provided by a single <div class="container">.

-- cgit v1.2.3 From 02bf27592c8eec51795ac806390bc57db501926d Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Mon, 31 Oct 2011 19:37:10 -0700 Subject: overhaul the table styles and update those everywhere in the docs, update the button docs, spec out the forms docs --- docs/scaffolding.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'docs/scaffolding.html') diff --git a/docs/scaffolding.html b/docs/scaffolding.html index 4a5aa9a0b..de50caf8d 100644 --- a/docs/scaffolding.html +++ b/docs/scaffolding.html @@ -161,7 +161,7 @@

Grid customization

- +
@@ -273,7 +273,7 @@

Supported devices

Bootstrap supports a handful of media queries to help make your projects more appropriate on different devices and screen resolutions. Here's what's included:

-
Variable
+
-- cgit v1.2.3 From 4af6dac20ed17c616fbbee7e68b34a37252565e0 Mon Sep 17 00:00:00 2001 From: Silumesii Maboshe Date: Mon, 7 Nov 2011 09:06:13 +0200 Subject: Use 'fluid-container' instead of 'container-fluid' in the docs. --- docs/scaffolding.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/scaffolding.html') diff --git a/docs/scaffolding.html b/docs/scaffolding.html index de50caf8d..9a04f7c36 100644 --- a/docs/scaffolding.html +++ b/docs/scaffolding.html @@ -242,7 +242,7 @@
 <body>
-  <div class="container-fluid">
+  <div class="fluid-container">
     <div class="sidebar">
       ...
     </div>
-- 
cgit v1.2.3


From 74dc83f211245dfaf06da9a1b2ad94f51f790be2 Mon Sep 17 00:00:00 2001
From: Raul Riera 
Date: Mon, 7 Nov 2011 10:22:28 +0100
Subject: Added the view port meta tag for proper responsiveness

---
 docs/scaffolding.html | 1 +
 1 file changed, 1 insertion(+)

(limited to 'docs/scaffolding.html')

diff --git a/docs/scaffolding.html b/docs/scaffolding.html
index de50caf8d..d0dd6a19b 100644
--- a/docs/scaffolding.html
+++ b/docs/scaffolding.html
@@ -3,6 +3,7 @@
   
     
     Bootstrap, from Twitter
+    
     
     
 
-- 
cgit v1.2.3


From 0e6cd670ca0619c663c016c08059530b598e15d3 Mon Sep 17 00:00:00 2001
From: Raul Riera 
Date: Tue, 8 Nov 2011 20:32:28 +0100
Subject: Removed trailing backslash :)

---
 docs/scaffolding.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'docs/scaffolding.html')

diff --git a/docs/scaffolding.html b/docs/scaffolding.html
index d0dd6a19b..87995de9d 100644
--- a/docs/scaffolding.html
+++ b/docs/scaffolding.html
@@ -3,7 +3,7 @@
   
     
     Bootstrap, from Twitter
-    
+    
     
     
 
-- 
cgit v1.2.3


From b36df463108e2e4df8c389a06f577823564788d9 Mon Sep 17 00:00:00 2001
From: Mark Otto 
Date: Tue, 29 Nov 2011 22:35:03 -0800
Subject: misc docs updates, revamped tables CSS save for grid columns and
 tablesorter options

---
 docs/scaffolding.html | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

(limited to 'docs/scaffolding.html')

diff --git a/docs/scaffolding.html b/docs/scaffolding.html
index 10ad71a74..f330d750d 100644
--- a/docs/scaffolding.html
+++ b/docs/scaffolding.html
@@ -162,7 +162,7 @@
   
 
   

Grid customization

-
Label
+
@@ -173,12 +173,12 @@ - + - + @@ -274,7 +274,7 @@

Supported devices

Bootstrap supports a handful of media queries to help make your projects more appropriate on different devices and screen resolutions. Here's what's included:

-
Variable
@gridColumns1612 The number of columns within the grid
@gridColumnWidth40px60px The width of each column within the grid
+
-- cgit v1.2.3 From 447c9322e96ebd1102115aea01d925536016351a Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Tue, 29 Nov 2011 23:56:01 -0800 Subject: update all leads on docs pages --- docs/scaffolding.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/scaffolding.html') diff --git a/docs/scaffolding.html b/docs/scaffolding.html index f330d750d..d4d1c6526 100644 --- a/docs/scaffolding.html +++ b/docs/scaffolding.html @@ -50,7 +50,7 @@ ================================================== -->

Scaffolding

-

Responsive 12-column grid and fixed- and fluid-width layouts

+

Bootstrap is built on a responsive 12-column grid. We've also included fixed- and fluid-width layouts based on that system.

-- cgit v1.2.3 From bc51c15709469fd0c2e78886a15e849626a8f191 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Wed, 30 Nov 2011 01:00:55 -0800 Subject: adding temp idea for subnav to docs --- docs/scaffolding.html | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'docs/scaffolding.html') diff --git a/docs/scaffolding.html b/docs/scaffolding.html index d4d1c6526..dd7f05bc6 100644 --- a/docs/scaffolding.html +++ b/docs/scaffolding.html @@ -53,6 +53,15 @@

Bootstrap is built on a responsive 12-column grid. We've also included fixed- and fluid-width layouts based on that system.

+ + + - - + + + -- cgit v1.2.3 From 7b810bf9a617e1f02e073aafcc70857dc915ee59 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Fri, 9 Dec 2011 12:10:01 -0800 Subject: update js in footer, add max-width to img --- docs/scaffolding.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'docs/scaffolding.html') diff --git a/docs/scaffolding.html b/docs/scaffolding.html index 625c4bdb7..f597e7e88 100644 --- a/docs/scaffolding.html +++ b/docs/scaffolding.html @@ -377,9 +377,9 @@ -- cgit v1.2.3 From ecbc9ec4a2cbd3f68067b869c328d55e8afc8aa6 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sun, 11 Dec 2011 02:03:16 -0800 Subject: updated footers everywhere --- docs/scaffolding.html | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'docs/scaffolding.html') diff --git a/docs/scaffolding.html b/docs/scaffolding.html index f597e7e88..cb8e067db 100644 --- a/docs/scaffolding.html +++ b/docs/scaffolding.html @@ -363,10 +363,9 @@ ================================================== --> -- cgit v1.2.3 From 54a84f0f7f217ea12249857d2b2d5ad4795e41e2 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sun, 11 Dec 2011 02:05:50 -0800 Subject: clearer grid vars docs language --- docs/scaffolding.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'docs/scaffolding.html') diff --git a/docs/scaffolding.html b/docs/scaffolding.html index cb8e067db..8b7e620fb 100644 --- a/docs/scaffolding.html +++ b/docs/scaffolding.html @@ -174,22 +174,22 @@
- + - + - + - +
Label
@gridColumns 12The number of columns within the gridNumber of columns
@gridColumnWidth 60pxThe width of each column within the gridWidth of each column
@gridGutterWidth 20pxThe negative space between each columnNegative space between columns
@siteWidth Computed sum of all columns and guttersWe use some basic match to count the number of columns and gutters and set the width of the .fixed-container() mixin.Counts number of columns and gutters to set width of the .fixed-container() mixin
-- cgit v1.2.3 From 72a536393c2f2aba4f855384e94c4ce09bc2e39c Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Mon, 19 Dec 2011 22:58:56 -0800 Subject: mostly docs updates, but also some bug fixes per github issues --- docs/scaffolding.html | 51 +++++++++++++++++++++++++++++++-------------------- 1 file changed, 31 insertions(+), 20 deletions(-) (limited to 'docs/scaffolding.html') diff --git a/docs/scaffolding.html b/docs/scaffolding.html index 8b7e620fb..7431ae58b 100644 --- a/docs/scaffolding.html +++ b/docs/scaffolding.html @@ -64,34 +64,34 @@

Default 940px grid

-
1
-
1
-
1
-
1
-
1
-
1
-
1
-
1
-
1
-
1
-
1
-
1
+
1
+
1
+
1
+
1
+
1
+
1
+
1
+
1
+
1
+
1
+
1
+
1
-
4
-
4
-
4
+
4
+
4
+
4
-
4
-
8
+
4
+
8
-
6
-
6
+
6
+
6
-
12
+
12
@@ -383,6 +383,17 @@ }); + + -- cgit v1.2.3 From 20aecb983838422c7b43e20960b10d4d79fefaa3 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Wed, 21 Dec 2011 16:22:20 -0600 Subject: updated all docs to jQuery 1.7, move all docs JS to application.js, and move dropdowns css to dedicated file --- docs/scaffolding.html | 24 +----------------------- 1 file changed, 1 insertion(+), 23 deletions(-) (limited to 'docs/scaffolding.html') diff --git a/docs/scaffolding.html b/docs/scaffolding.html index 7431ae58b..473553412 100644 --- a/docs/scaffolding.html +++ b/docs/scaffolding.html @@ -371,29 +371,7 @@ - - - - - - + -- cgit v1.2.3 From efacac0d6c812abffa8a84a48fa760f5f56c92f0 Mon Sep 17 00:00:00 2001 From: Jacob Thornton Date: Wed, 21 Dec 2011 18:42:43 -0800 Subject: clean up all the js across all the doc pages --- docs/scaffolding.html | 74 +++++++++++++++++---------------------------------- 1 file changed, 24 insertions(+), 50 deletions(-) (limited to 'docs/scaffolding.html') diff --git a/docs/scaffolding.html b/docs/scaffolding.html index 7431ae58b..311a6954c 100644 --- a/docs/scaffolding.html +++ b/docs/scaffolding.html @@ -64,34 +64,34 @@

Default 940px grid

-
1
-
1
-
1
-
1
-
1
-
1
-
1
-
1
-
1
-
1
-
1
-
1
+
1
+
1
+
1
+
1
+
1
+
1
+
1
+
1
+
1
+
1
+
1
+
1
-
4
-
4
-
4
+
4
+
4
+
4
-
4
-
8
+
4
+
8
-
6
-
6
+
6
+
6
-
12
+
12
@@ -358,7 +358,6 @@
-
@@ -371,36 +370,11 @@ - - - - - - - + + - - - + - - + \ No newline at end of file -- cgit v1.2.3 From 49fb910b11baef4ccfe9270479e8b9bf9e5e7731 Mon Sep 17 00:00:00 2001 From: Jacob Thornton Date: Thu, 22 Dec 2011 19:25:29 -0800 Subject: more js cleanup after gnarly merge --- docs/scaffolding.html | 1 + 1 file changed, 1 insertion(+) (limited to 'docs/scaffolding.html') diff --git a/docs/scaffolding.html b/docs/scaffolding.html index dc35bd577..0a46252dd 100644 --- a/docs/scaffolding.html +++ b/docs/scaffolding.html @@ -375,5 +375,6 @@ + -- cgit v1.2.3 From 621dd13d87b6ba5fd351966056ea335c6a946f45 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Thu, 5 Jan 2012 15:43:07 -0800 Subject: move mega link footer to scaffolding to try it out, fix broken button text shadow, change UL/OL margins back, make li color same as body --- docs/scaffolding.html | 64 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) (limited to 'docs/scaffolding.html') diff --git a/docs/scaffolding.html b/docs/scaffolding.html index 0a46252dd..87394006b 100644 --- a/docs/scaffolding.html +++ b/docs/scaffolding.html @@ -361,6 +361,70 @@
 <body>
-  <div class="fluid-container">
-    <div class="sidebar">
+  <div class="fluid-container sidebar-left">
+    <div class="fluid-sidebar">
       ...
     </div>
-    <div class="content">
+    <div class="fluid-content">
       ...
     </div>
   </div>
-- 
cgit v1.2.3


From 83c0896999c91f4d85bb75434f4a4ecfaff07fe0 Mon Sep 17 00:00:00 2001
From: Mark Otto 
Date: Sun, 8 Jan 2012 21:48:07 -0800
Subject: updated js pages to put examples first

---
 docs/scaffolding.html | 41 +++++++++++++++++++----------------------
 1 file changed, 19 insertions(+), 22 deletions(-)

(limited to 'docs/scaffolding.html')

diff --git a/docs/scaffolding.html b/docs/scaffolding.html
index 10e5a43be..5b6f7c7c3 100644
--- a/docs/scaffolding.html
+++ b/docs/scaffolding.html
@@ -384,36 +384,33 @@
             
Tables
Forms
Buttons
-
Button groups
-
Icons
+
Icons by Glyphicons
Components
-
Thumbnails
-
Autocomplete
-
Carousel
-
Side nav
+
Button groups
+
Split button dropdowns
+
Nav, tabs, pills
Navbar
-
Tabs and pills
+
Breadcrumbs
Pagination
-
Alerts and errors
-
Modals
-
Twipsy tooltips
-
Popovers
+
Thumbnails
+
Alert messages
Javascript plugins
-
Transitions
-
Modals
-
Dropdowns
-
Scrollspy
-
Tabs
-
Twipsy tooltips
-
Popovers
-
Alerts
-
Buttons
-
Accordion
-
Carousel
+
Transitions
+
Modals
+
Dropdowns
+
Scrollspy
+
Tabs
+
Twipsy tooltips
+
Popovers
+
Alerts
+
Buttons
+
Collapse
+
Carousel
+
Typeahead
Using LESS
-- cgit v1.2.3 From a34231d94d37bd30b59577580a12c20a9939f5fa Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Tue, 10 Jan 2012 15:58:44 -0800 Subject: typo --- docs/scaffolding.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/scaffolding.html') diff --git a/docs/scaffolding.html b/docs/scaffolding.html index 5b6f7c7c3..895eaa19d 100644 --- a/docs/scaffolding.html +++ b/docs/scaffolding.html @@ -196,7 +196,7 @@

Variables in LESS

-

Built into Bootstrap are a handful of variables for customizing the default 940px grid system, documented above. All variables for the grid are stored in mixins.less.

+

Built into Bootstrap are a handful of variables for customizing the default 940px grid system, documented above. All variables for the grid are stored in variables.less.

How to customize

-- cgit v1.2.3 From 6f2f947a4309a8fdeb7067612447c0f1a15dcfd9 Mon Sep 17 00:00:00 2001 From: Jacob Thornton Date: Wed, 11 Jan 2012 21:42:55 -0800 Subject: add build tool for js + rename twipsy to tooltip + lots of little doc cleanup --- docs/scaffolding.html | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'docs/scaffolding.html') diff --git a/docs/scaffolding.html b/docs/scaffolding.html index 5b6f7c7c3..3a0cce80a 100644 --- a/docs/scaffolding.html +++ b/docs/scaffolding.html @@ -399,15 +399,15 @@
Javascript plugins
-
Transitions
-
Modals
-
Dropdowns
+
Transition
+
Modal
+
Dropdown
Scrollspy
-
Tabs
-
Twipsy tooltips
-
Popovers
-
Alerts
-
Buttons
+
Tab
+
Tooltip
+
Popover
+
Alert
+
Button
Collapse
Carousel
Typeahead
@@ -433,7 +433,7 @@ - + -- cgit v1.2.3 From 391248c0e3ba9b00b0b4a02e4d94475e9ae9877a Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Thu, 12 Jan 2012 15:29:16 -0800 Subject: nuke uber footer, bring back topbar dropdowns --- docs/scaffolding.html | 130 +++++++++++++++++++++++++------------------------- 1 file changed, 65 insertions(+), 65 deletions(-) (limited to 'docs/scaffolding.html') diff --git a/docs/scaffolding.html b/docs/scaffolding.html index b868fd215..546a2755a 100644 --- a/docs/scaffolding.html +++ b/docs/scaffolding.html @@ -34,11 +34,71 @@ Bootstrap
@@ -361,66 +421,6 @@