]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
copyediting
authorChris Rebert <code@rebertia.com>
Mon, 16 Dec 2013 02:13:50 +0000 (18:13 -0800)
committerChris Rebert <code@rebertia.com>
Mon, 16 Dec 2013 02:13:50 +0000 (18:13 -0800)
css.html
javascript.html
less/forms.less
less/navbar.less
less/navs.less
less/panels.less
less/type.less

index 4220b998cc1698433daf3f22cb9859084f63fab0..7f813df57b908d1fd664ecc5f718208d608a3d52 100644 (file)
--- a/css.html
+++ b/css.html
@@ -3006,7 +3006,7 @@ a {
 {% endhighlight %}
 
     <h3 id="less-mixins-box-shadow">Box (Drop) shadows</h3>
-    <p>If your target audience is using the latest and greatest browsers and devices, be sure to just use the <code>box-shadow</code> property on it's own. If you need support for older Android (pre-v4) and iOS devices (pre-iOS 5), use of the mixin to pick up the required <code>-webkit</code> prefix.</p>
+    <p>If your target audience is using the latest and greatest browsers and devices, be sure to just use the <code>box-shadow</code> property on its own. If you need support for older Android (pre-v4) and iOS devices (pre-iOS 5), use the mixin to pick up the required <code>-webkit</code> prefix.</p>
     <p>Be sure to use <code>rgba()</code> colors in your box shadows so they blend as seamlessly as possible with backgrounds.</p>
 {% highlight css %}
 .box-shadow(@shadow: 0 1px 3px rgba(0,0,0,.25)) {
index d83358a3974a68eadfc2478e70160c95f4879d70..9dcef28f83163aef44b3cca0d1dbc1851b05b72e 100644 (file)
@@ -2053,7 +2053,7 @@ $('#myCarousel').on('slide.bs.carousel', function () {
     <p>The affix plugin toggles between three classes, each representing a particular state: <code>.affix</code>, <code>.affix-top</code>, and <code>.affix-bottom</code>. You must provide the styles for these classes yourself (independent of this plugin) to handle the actual positions.</p>
     <p>Here's how the affix plugin works:</p>
     <ol>
-      <li>To start, the plugin adds <code>.affix-top</code> to indicate the element is in it's top-most position. At this point no CSS positioning is required.</li>
+      <li>To start, the plugin adds <code>.affix-top</code> to indicate the element is in its top-most position. At this point no CSS positioning is required.</li>
       <li>Scrolling past the element you want affixed should trigger the actual affixing. This is where <code>.affix</code> replaces <code>.affix-top</code> and sets <code>position: fixed;</code> (provided by Bootstrap's code CSS).</li>
       <li>If a bottom offset is defined, scrolling past that should replace <code>.affix</code> with <code>.affix-bottom</code>. Since offsets are optional, setting one requires you to set the appropriate CSS. In this case, add <code>position: absolute;</code> when necessary. The plugin uses the data attribute or JavaScript option to determine where to position the element from there.</li>
     </ol>
index 530257499fb7ca2bb809aeed9e1f230f0ce07cf9..aefa5a462c858a6642d0d138eb611e8e2205e9d3 100644 (file)
@@ -265,7 +265,7 @@ input[type="checkbox"],
   // Feedback icon (requires .glyphicon classes)
   .form-control-feedback {
     position: absolute;
-    top: (@line-height-computed + 5); // Height of the `label` and it's margin
+    top: (@line-height-computed + 5); // Height of the `label` and its margin
     right: 0;
     display: block;
     width: @input-height-base;
index d96f85e30635c086c9d8a972c4ce932c32a46488..621772fbbfb464bd870ca9554eb7931285c81816 100644 (file)
 
 // Navbar nav links
 //
-// Builds on top of the `.nav` components with it's own modifier class to make
+// Builds on top of the `.nav` components with its own modifier class to make
 // the nav the full height of the horizontal nav (above 768px).
 
 .navbar-nav {
index e4ac1445952df8bbdd3d14adbc63a97917e2fc38..9e729b39fe5e31b062c5e9644ae2fb58d0b829ec 100644 (file)
@@ -91,7 +91,7 @@
       }
     }
 
-    // Active state, and it's :hover to override normal :hover
+    // Active state, and its :hover to override normal :hover
     &.active > a {
       &,
       &:hover,
index 1b72cebd160666ef56d996adbbd7645d4efa272c..eefaf2e871401d940326a4afeb61fdd1ac7a617a 100644 (file)
   }
 }
 
-// Within heading, strip any `h*` tag of it's default margins for spacing.
+// Within heading, strip any `h*` tag of its default margins for spacing.
 .panel-title {
   margin-top: 0;
   margin-bottom: 0;
index 9d032b2681c18ce8484935a08ca24d47a6f669dd..5373975d2fa53c10b11ba6af1af5dd2760513adf 100644 (file)
@@ -126,7 +126,7 @@ cite    { font-style: normal; }
 // For now we'll leave these alongside the text classes until v4 when we can
 // safely shift things around (per SemVer rules).
 .bg-primary {
-  // Given the contrast here, this is the only class to have it's color inverted
+  // Given the contrast here, this is the only class to have its color inverted
   // automatically.
   color: #fff;
   background-color: @brand-primary;