]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
updated tests and homepage marketing copy
authorMark Otto <markotto@twitter.com>
Tue, 19 Jun 2012 20:21:35 +0000 (13:21 -0700)
committerMark Otto <markotto@twitter.com>
Tue, 19 Jun 2012 20:21:35 +0000 (13:21 -0700)
docs/index.html
docs/templates/pages/index.mustache
less/tests/css-tests.html

index 63f58bf3f86c87080514d5c18040b74998f1fe70..34bb0fe166d0e117a026b49cc7f9fd969ed7f923 100644 (file)
 
       <img class="bs-icon" src="assets/img/glyphicons/glyphicons_214_resize_small.png">
       <h2>Responsive design</h2>
-      <p>As of Bootstrap 2, our components are scaled according to a range of resolutions and devices to provide a consistent experience, no matter what.</p>
+      <p>Beginning with Bootstrap 2, components are scaled according to a range of resolutions and devices to provide a consistent experience, no matter what.</p>
     </div>
     <div class="span5">
       <img class="bs-icon" src="assets/img/glyphicons/glyphicons_266_book_open.png">
-      <h2>Styleguide docs</h2>
-      <p>Unlike other front-end toolkits, Bootstrap was designed first and foremost as a styleguide to document not only our features, but best practices and living, coded examples.</p>
+      <h2>Living, coded examples</h2>
+      <p>Bootstrap was designed first and foremost as a way to document not only the code of our components, but the visual and interaction design through live examples.</p>
 
       <img class="bs-icon" src="assets/img/glyphicons/glyphicons_082_roundabout.png">
       <h2>Growing library</h2>
 
       <img class="bs-icon" src="assets/img/glyphicons/glyphicons_009_magic.png">
       <h2>Custom jQuery plugins</h2>
-      <p>Easy-to-use, proper, and extensible interactions for many common components with custom-built jQuery plugins to bring your projects to life.</p>
+      <p>Easy-to-use, proper, and extensible interactions for many of our components with custom-built jQuery plugins to quickly bring any project to life.</p>
 
       <img class="bs-icon" src="assets/img/less-small.png">
       <h2>Built on LESS</h2>
index fe7a02717ebf3a545819c02636edc25e587ddb49..d7c97137248dc5966f6f7087a5f371352dad999a 100644 (file)
 
       <img class="bs-icon" src="assets/img/glyphicons/glyphicons_214_resize_small.png">
       <h2>{{_i}}Responsive design{{/i}}</h2>
-      <p>{{_i}}As of Bootstrap 2, our components are scaled according to a range of resolutions and devices to provide a consistent experience, no matter what.{{/i}}</p>
+      <p>{{_i}}Beginning with Bootstrap 2, components are scaled according to a range of resolutions and devices to provide a consistent experience, no matter what.{{/i}}</p>
     </div>
     <div class="span5">
       <img class="bs-icon" src="assets/img/glyphicons/glyphicons_266_book_open.png">
-      <h2>{{_i}}Styleguide docs{{/i}}</h2>
-      <p>{{_i}}Unlike other front-end toolkits, Bootstrap was designed first and foremost as a styleguide to document not only our features, but best practices and living, coded examples.{{/i}}</p>
+      <h2>{{_i}}Living, coded examples{{/i}}</h2>
+      <p>{{_i}}Bootstrap was designed first and foremost as a way to document not only the code of our components, but the visual and interaction design through live examples.{{/i}}</p>
 
       <img class="bs-icon" src="assets/img/glyphicons/glyphicons_082_roundabout.png">
       <h2>{{_i}}Growing library{{/i}}</h2>
@@ -69,7 +69,7 @@
 
       <img class="bs-icon" src="assets/img/glyphicons/glyphicons_009_magic.png">
       <h2>{{_i}}Custom jQuery plugins{{/i}}</h2>
-      <p>{{_i}}Easy-to-use, proper, and extensible interactions for many common components with custom-built jQuery plugins to bring your projects to life.{{/i}}</p>
+      <p>{{_i}}Easy-to-use, proper, and extensible interactions for many of our components with custom-built jQuery plugins to quickly bring any project to life.{{/i}}</p>
 
       <img class="bs-icon" src="assets/img/less-small.png">
       <h2>{{_i}}Built on LESS{{/i}}</h2>
index b7177e5c6854fa4c88257352e212c3264675865f..017aa84f18d9d6dd7e54b80187162d50e0d93695 100644 (file)
     <form>
       <div class="controls">
         <div class="input-prepend">
-          <span class="add-on">@</span><input class="span2" id="prependedInput" size="16" type="text">
+          <span class="add-on">@</span>
+          <input class="span2" id="prependedInput" size="16" type="text">
         </div>
       </div>
       <div class="controls">
         <div class="input-append">
-          <input class="span2" id="prependedInput" size="16" type="text"><span class="add-on">@</span>
+          <input class="span2" id="prependedInput" size="16" type="text">
+          <span class="add-on">@</span>
         </div>
       </div>
       <div class="controls">
         <div class="input-prepend input-append">
-          <span class="add-on">$</span><input class="span2" id="prependedInput" size="16" type="text"><span class="add-on">.00</span>
+          <span class="add-on">$</span>
+          <input class="span2" id="prependedInput" size="16" type="text">
+          <span class="add-on">.00</span>
         </div>
       </div>
     </form>
     <h4>Prepend and append with uneditable</h4>
     <form>
       <div class="input-prepend">
-        <span class="add-on">$</span><span class="span2 uneditable-input">Some value here</span>
+        <span class="add-on">$</span>
+        <span class="span2 uneditable-input">Some value here</span>
       </div>
       <div class="input-append">
-        <span class="span2 uneditable-input">Some value here</span><span class="add-on">.00</span>
+        <span class="span2 uneditable-input">Some value here</span>
+        <span class="add-on">.00</span>
+      </div>
+      <div class="input-prepend input-append">
+        <span class="add-on">$</span>
+        <span class="span2 uneditable-input">Some value here</span>
+        <span class="add-on">.00</span>
       </div>
     </form>
   </div><!--/span-->