From 84c33a822da54a48f0f4751fe519dfc6b324a453 Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Fri, 3 Jan 2014 16:19:20 -0800 Subject: [PATCH 01/11] Replace lingering page.url instance with site.baseurl Refs #12083 & #12037 --- docs/css.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/css.html b/docs/css.html index 91cd0218c3..38f03c4a54 100644 --- a/docs/css.html +++ b/docs/css.html @@ -3462,7 +3462,7 @@ Bootstrap.javascripts_path @import "bootstrap/theme"; {% endhighlight %} -

The full list of Bootstrap variables can be found in the Customizer. You can override these by simply redefining the variable before the @import directive, e.g.:

+

The full list of Bootstrap variables can be found in the Customizer. You can override these by simply redefining the variable before the @import directive, e.g.:

{% highlight sass %} $navbar-default-bg: #312312; From 8662323cd5f35d329ad315a04b08cd841c2b925f Mon Sep 17 00:00:00 2001 From: Nick Schonning Date: Sat, 4 Jan 2014 10:46:05 -0500 Subject: [PATCH 02/11] Quote Node 0.10 so correct version is printed --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index be63538028..5eccbe3a5e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,6 @@ language: node_js node_js: - - 0.10 + - "0.10" before_install: - time sudo pip install --use-mirrors -r test-infra/requirements.txt - rvm use 1.9.3 --fuzzy From 11f56bbb7b472f7fd17bd86909cf480ee860c751 Mon Sep 17 00:00:00 2001 From: Quy Ton Date: Sat, 4 Jan 2014 09:10:02 -0800 Subject: [PATCH 03/11] Use relative URLs --- docs/components.html | 4 ++-- docs/css.html | 8 ++++---- docs/javascript.html | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/components.html b/docs/components.html index 5cb0bfc203..be6ccc269e 100644 --- a/docs/components.html +++ b/docs/components.html @@ -1421,7 +1421,7 @@ lead: "Over a dozen reusable components built to provide iconography, dropdowns,

Mobile device caveats

-

There are some caveats regarding using form controls within fixed elements on mobile devices. See our browser support docs for details.

+

There are some caveats regarding using form controls within fixed elements on mobile devices. See our browser support docs for details.

@@ -1454,7 +1454,7 @@ lead: "Over a dozen reusable components built to provide iconography, dropdowns,

Context-specific usage

-

Like the standard button classes, .navbar-btn can be used on <a> and <input> elements. However, neither .navbar-btn nor the standard button classes should be used on <a> elements within .navbar-nav.

+

Like the standard button classes, .navbar-btn can be used on <a> and <input> elements. However, neither .navbar-btn nor the standard button classes should be used on <a> elements within .navbar-nav.

diff --git a/docs/css.html b/docs/css.html index 38f03c4a54..1c8b7c1fd4 100644 --- a/docs/css.html +++ b/docs/css.html @@ -2552,7 +2552,7 @@ For example, <section> should be wrapped as inline.

Screen reader content

-

Hide an element to all devices except screen readers with .sr-only. Necessary for following accessibility best practices. Can also be used as a mixin.

+

Hide an element to all devices except screen readers with .sr-only. Necessary for following accessibility best practices. Can also be used as a mixin.

{% highlight html %} Skip to main content {% endhighlight %} @@ -2820,11 +2820,11 @@ For example, <section> should be wrapped as inline.

Bootstrap's CSS is built on Less, a preprocessor with additional functionality like variables, mixins, and functions for compiling CSS. Those looking to use the source Less files instead of our compiled CSS files can make use of the numerous variables and mixins we use throughout the framework.

-

Grid variables and mixins are covered within the Grid system section.

+

Grid variables and mixins are covered within the Grid system section.

Variables

-

Variables are used throughout the entire project as a way to centralize and share commonly used values like colors, spacing, or font stacks. For a complete breakdown, please see the Customizer.

+

Variables are used throughout the entire project as a way to centralize and share commonly used values like colors, spacing, or font stacks. For a complete breakdown, please see the Customizer.

Colors

Easily make use of two color schemes: grayscale and semantic. Grayscale colors provide quick access to commonly used shades of black while semantic include various colors assigned to meaningful contextual values.

@@ -3462,7 +3462,7 @@ Bootstrap.javascripts_path @import "bootstrap/theme"; {% endhighlight %} -

The full list of Bootstrap variables can be found in the Customizer. You can override these by simply redefining the variable before the @import directive, e.g.:

+

The full list of Bootstrap variables can be found in the Customizer. You can override these by simply redefining the variable before the @import directive, e.g.:

{% highlight sass %} $navbar-default-bg: #312312; diff --git a/docs/javascript.html b/docs/javascript.html index 3bceb67512..07d92aa320 100644 --- a/docs/javascript.html +++ b/docs/javascript.html @@ -109,7 +109,7 @@ $('#myModal').on('show.bs.modal', function (e) {

Mobile device caveats

-

There are some caveats regarding using modals on mobile devices. See our browser support docs for details.

+

There are some caveats regarding using modals on mobile devices. See our browser support docs for details.

Static example

@@ -795,7 +795,7 @@ $('#myTab li:eq(2) a').tab('show') // Select third tab (0-indexed) {% endhighlight %}

Markup

-

You can activate a tab or pill navigation without writing any JavaScript by simply specifying data-toggle="tab" or data-toggle="pill" on an element. Adding the nav and nav-tabs classes to the tab ul will apply the Bootstrap tab styling, while adding the nav and nav-pills classes will apply pill styling.

+

You can activate a tab or pill navigation without writing any JavaScript by simply specifying data-toggle="tab" or data-toggle="pill" on an element. Adding the nav and nav-tabs classes to the tab ul will apply the Bootstrap tab styling, while adding the nav and nav-pills classes will apply pill styling.

{% highlight html %}