Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Otto <otto@github.com>2014-01-10 08:33:55 +0400
committerMark Otto <otto@github.com>2014-01-10 08:33:55 +0400
commitea20f44815b535975d1f1416fee15bd1ea7acdb3 (patch)
treeedb73c6ae943629dbdc51d3350a50a079f7a2f7e /docs/css.html
parent04161a8c753c5f9ef83dd1f0848a17e8c4ab155c (diff)
parent7f153974e10980dccbdd485e63941b591e925148 (diff)
Merge branch 'master' into docs_derp
Conflicts: docs/assets/css/docs.css
Diffstat (limited to 'docs/css.html')
-rw-r--r--docs/css.html26
1 files changed, 13 insertions, 13 deletions
diff --git a/docs/css.html b/docs/css.html
index be3f2de1eb..3f73570b06 100644
--- a/docs/css.html
+++ b/docs/css.html
@@ -1314,21 +1314,21 @@ For example, <code>&lt;section&gt;</code> should be wrapped as inline.
</tr>
<tr>
<td>
- <code>.warning</code>
+ <code>.info</code>
</td>
- <td>Indicates a warning that might need attention</td>
+ <td>Indicates a neutral informative change or action</td>
</tr>
<tr>
<td>
- <code>.danger</code>
+ <code>.warning</code>
</td>
- <td>Indicates a dangerous or potentially negative action</td>
+ <td>Indicates a warning that might need attention</td>
</tr>
<tr>
<td>
- <code>.info</code>
+ <code>.danger</code>
</td>
- <td>Indicates a neutral informative change or action</td>
+ <td>Indicates a dangerous or potentially negative action</td>
</tr>
</tbody>
</table>
@@ -1368,7 +1368,7 @@ For example, <code>&lt;section&gt;</code> should be wrapped as inline.
<td>Column content</td>
<td>Column content</td>
</tr>
- <tr class="warning">
+ <tr class="info">
<td>5</td>
<td>Column content</td>
<td>Column content</td>
@@ -1380,7 +1380,7 @@ For example, <code>&lt;section&gt;</code> should be wrapped as inline.
<td>Column content</td>
<td>Column content</td>
</tr>
- <tr class="danger">
+ <tr class="warning">
<td>7</td>
<td>Column content</td>
<td>Column content</td>
@@ -1392,7 +1392,7 @@ For example, <code>&lt;section&gt;</code> should be wrapped as inline.
<td>Column content</td>
<td>Column content</td>
</tr>
- <tr class="info">
+ <tr class="danger">
<td>9</td>
<td>Column content</td>
<td>Column content</td>
@@ -2854,17 +2854,17 @@ For example, <code>&lt;section&gt;</code> should be wrapped as inline.
<div class="color-swatches">
<div class="color-swatch brand-primary"></div>
<div class="color-swatch brand-success"></div>
+ <div class="color-swatch brand-info"></div>
<div class="color-swatch brand-warning"></div>
<div class="color-swatch brand-danger"></div>
- <div class="color-swatch brand-info"></div>
</div>
</div>
{% highlight css %}
@brand-primary: #428bca;
@brand-success: #5cb85c;
+@brand-info: #5bc0de;
@brand-warning: #f0ad4e;
@brand-danger: #d9534f;
-@brand-info: #5bc0de;
{% endhighlight %}
<p>Use any of these color variables as they are or reassign them to more meaningful variables for your project.</p>
@@ -2989,7 +2989,7 @@ a {
{% endhighlight %}
<h3 id="less-mixins-rounded-corners">Rounded corners</h3>
- <p>Today all modern browsers support the non-prefixed <code>border-radius</code> property. As such, there is no <code>.border-radius()</code> mixin, but Preboot does include shortcuts for quickly rounding two corners on a particular side of an object.</p>
+ <p>Today all modern browsers support the non-prefixed <code>border-radius</code> property. As such, there is no <code>.border-radius()</code> mixin, but Bootstrap does include shortcuts for quickly rounding two corners on a particular side of an object.</p>
{% highlight css %}
.border-top-radius(@radius) {
border-top-right-radius: @radius;
@@ -3284,7 +3284,7 @@ a {
{% endhighlight %}
<h3 id="less-mixins-retina-images">Retina images</h3>
- <p>Specify two image paths and the @1x image dimensions, and Preboot will provide an @2x media query. <strong>If you have many images to serve, consider writing your retina image CSS manually in a single media query.</strong></p>
+ <p>Specify two image paths and the @1x image dimensions, and Bootstrap will provide an @2x media query. <strong>If you have many images to serve, consider writing your retina image CSS manually in a single media query.</strong></p>
{% highlight css %}
.img-retina(@file-1x; @file-2x; @width-1x; @height-1x) {
background-image: url("@{file-1x}");