From 1802cedbc11d9468705e9289297616f785e33a8d Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Fri, 31 Jan 2014 13:12:31 -0800 Subject: Use scss option instead of css for better highlighting --- docs/getting-started.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'docs/getting-started.html') diff --git a/docs/getting-started.html b/docs/getting-started.html index ec677b15e..9500862cd 100644 --- a/docs/getting-started.html +++ b/docs/getting-started.html @@ -483,11 +483,11 @@ bootstrap/

Internet Explorer 10 in Windows 8 and Windows Phone 8

Internet Explorer 10 doesn't differentiate device width from viewport width, and thus doesn't properly apply the media queries in Bootstrap's CSS. Normally you'd just add a quick snippet of CSS to fix this:

-{% highlight css %} +{% highlight scss %} @-ms-viewport { width: device-width; } {% endhighlight %}

However, this doesn't work for devices running Windows Phone 8 versions older than Update 3 (a.k.a. GDR3), as it causes such devices to show a mostly desktop view instead of narrow "phone" view. To address this, you'll need to include the following CSS and JavaScript to work around the bug.

-{% highlight css %} +{% highlight scss %} @-webkit-viewport { width: device-width; } @-moz-viewport { width: device-width; } @-ms-viewport { width: device-width; } @@ -563,7 +563,7 @@ if (isAndroid) {

Box-sizing

Some third party software, including Google Maps and Google Custom Search Engine, conflict with Bootstrap due to * { box-sizing: border-box; }, a rule which makes it so padding does not affect the final computed width of an element. Learn more about box model and sizing at CSS Tricks.

Depending on the context, you may override as-needed (Option 1) or reset the box-sizing for entire regions (Option 2).

-{% highlight css %} +{% highlight scss %} /* Box-sizing resets * * Reset individual elements or override regions to avoid conflicts due to @@ -704,7 +704,7 @@ if (isAndroid) {

To implement this, in the custom stylesheet, add the following CSS:

-{% highlight css %} +{% highlight scss %} /* Custom button -------------------------------------------------- */ -- cgit v1.2.3 From 880a38e1a4f2fb053d586fc196d6149e87ec80a4 Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Sat, 1 Feb 2014 20:57:00 -0800 Subject: add StackOverflow to Community section of Getting Started docs --- docs/getting-started.html | 1 + 1 file changed, 1 insertion(+) (limited to 'docs/getting-started.html') diff --git a/docs/getting-started.html b/docs/getting-started.html index 9500862cd..cecffebbd 100644 --- a/docs/getting-started.html +++ b/docs/getting-started.html @@ -319,6 +319,7 @@ bootstrap/

You can also follow @twbootstrap on Twitter for the latest gossip and awesome music videos.

-- cgit v1.2.3 From 8ee208e9c197d48828767764d7c89147ebde2a7e Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Mon, 3 Feb 2014 12:19:50 -0800 Subject: fix #12566 --- docs/getting-started.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/getting-started.html') diff --git a/docs/getting-started.html b/docs/getting-started.html index cecffebbd..25209c132 100644 --- a/docs/getting-started.html +++ b/docs/getting-started.html @@ -136,7 +136,7 @@ bootstrap/

Hello, world!

- + -- cgit v1.2.3 From 2865fde67fcf5902f5cb5952b01d43b8f2347127 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Fri, 7 Feb 2014 01:41:04 -0800 Subject: Fixes #12590: Add Korean translation link --- docs/getting-started.html | 1 + 1 file changed, 1 insertion(+) (limited to 'docs/getting-started.html') diff --git a/docs/getting-started.html b/docs/getting-started.html index 25209c132..27d9f00a2 100644 --- a/docs/getting-started.html +++ b/docs/getting-started.html @@ -769,6 +769,7 @@ if (isAndroid) {
  • Bootstrap по-русски (Russian)
  • Bootstrap en Español (Spanish)
  • Bootstrap ua Українською (Ukrainian)
  • +
  • Bootstrap 한국어 (Korean)
  • Have another language to add, or perhaps a different or better translation? Let us know by opening an issue.

    -- cgit v1.2.3 From c399bfb01581fcc89474bb1d23718d279e246b45 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Fri, 7 Feb 2014 01:49:12 -0800 Subject: Fixes #12477: Clarify IE support in docs --- docs/getting-started.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/getting-started.html') diff --git a/docs/getting-started.html b/docs/getting-started.html index 27d9f00a2..f23c48f78 100644 --- a/docs/getting-started.html +++ b/docs/getting-started.html @@ -369,7 +369,7 @@ bootstrap/

    Bootstrap is built to work best in the latest desktop and mobile browsers, meaning older browsers might display differently styled, though fully functional, renderings of certain components.

    Supported browsers

    -

    Specifically, we support the latest versions of the following browsers and platforms:

    +

    Specifically, we support the latest versions of the following browsers and platforms. On Windows, we support Internet Explorer 8-11. More specific support information is provided below.

    -- cgit v1.2.3 From bdf9ce4c45b81e62ab7ebd88a9e3daa98ecdd10c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zlatan=20Vasovi=C4=87?= Date: Fri, 7 Feb 2014 19:31:08 +0100 Subject: Omit semicolons consistently in docs --- docs/getting-started.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'docs/getting-started.html') diff --git a/docs/getting-started.html b/docs/getting-started.html index f23c48f78..5831474cb 100644 --- a/docs/getting-started.html +++ b/docs/getting-started.html @@ -543,10 +543,10 @@ if (navigator.userAgent.match(/IEMobile\/10\.0/)) {

    On <select> elements, the Android stock browser will not display the side controls if there is a border-radius and/or border applied. Use the snippet of code below to remove the offending CSS and render the <select> as an unstyled element on the Android stock browser. The user agent sniffing avoids interference with Chrome, Safari, and Mozilla browsers.

    {% highlight html %} {% endhighlight %} -- cgit v1.2.3 From 8dab75d40822580f1a34b023edebc8a637113d07 Mon Sep 17 00:00:00 2001 From: Quy Ton Date: Sun, 9 Feb 2014 09:18:11 -0800 Subject: Reorder links --- docs/getting-started.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/getting-started.html') diff --git a/docs/getting-started.html b/docs/getting-started.html index 5831474cb..7e17d5408 100644 --- a/docs/getting-started.html +++ b/docs/getting-started.html @@ -766,10 +766,10 @@ if (isAndroid) {
  • Bootstrap 中文文档 (Chinese)
  • Bootstrap en Français (French)
  • Bootstrap auf Deutsch (German)
  • +
  • Bootstrap 한국어 (Korean)
  • Bootstrap по-русски (Russian)
  • Bootstrap en Español (Spanish)
  • Bootstrap ua Українською (Ukrainian)
  • -
  • Bootstrap 한국어 (Korean)
  • Have another language to add, or perhaps a different or better translation? Let us know by opening an issue.

    -- cgit v1.2.3 From 6f0059c5273bc6b051df411b9844b91b2b46a0cd Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Mon, 10 Feb 2014 22:12:28 -0800 Subject: add version to getting started page --- docs/getting-started.html | 1 + 1 file changed, 1 insertion(+) (limited to 'docs/getting-started.html') diff --git a/docs/getting-started.html b/docs/getting-started.html index 7e17d5408..9b25e2f77 100644 --- a/docs/getting-started.html +++ b/docs/getting-started.html @@ -30,6 +30,7 @@ lead: "An overview of Bootstrap, how to download and use, basic templates and ex Download Sass +

    Currently v{{ site.current_version }}.

    Bootstrap CDN

    The folks over at MaxCDN graciously provide CDN support for Bootstrap's CSS and JavaScript. Just use these Bootstrap CDN links.

    -- cgit v1.2.3 From ca02f49013f6f505f4f0faa0ccd6cd81c178e890 Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Sun, 16 Feb 2014 12:26:09 -0800 Subject: Safari rounding problem still present as of v7.0.1 for OS X --- docs/getting-started.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/getting-started.html') diff --git a/docs/getting-started.html b/docs/getting-started.html index 9b25e2f77..76f062d51 100644 --- a/docs/getting-started.html +++ b/docs/getting-started.html @@ -512,7 +512,7 @@ if (navigator.userAgent.match(/IEMobile\/10\.0/)) {

    As a heads up, we include this in the Bootstrap docs as an example.

    Safari percent rounding

    -

    As of Safari v6.1 for OS X and Safari for iOS v7.0.1, Safari's rendering engine has some trouble with the number of decimal places used in our .col-*-1 grid classes. So if you have 12 individual grid columns, you'll notice that they come up short compared to other rows of columns. We can't do much here (see #9282) but you do have some options:

    +

    As of Safari v7.0.1 for OS X and Safari for iOS v7.0.1, Safari's rendering engine has some trouble with the number of decimal places used in our .col-*-1 grid classes. So if you have 12 individual grid columns, you'll notice that they come up short compared to other rows of columns. We can't do much here (see #9282) but you do have some options:

    • Add .pull-right to your last grid column to get the hard-right alignment
    • Tweak your percentages manually to get the perfect rounding for Safari (more difficult than the first option)
    • -- cgit v1.2.3 From 8af1673ab775ef28d5492b33143bf5865d98ee1c Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Wed, 19 Feb 2014 11:19:41 -0800 Subject: change translation docs in light of #11342 & its many dupes --- docs/getting-started.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'docs/getting-started.html') diff --git a/docs/getting-started.html b/docs/getting-started.html index 76f062d51..440098cb9 100644 --- a/docs/getting-started.html +++ b/docs/getting-started.html @@ -772,5 +772,6 @@ if (isAndroid) {
    • Bootstrap en Español (Spanish)
    • Bootstrap ua Українською (Ukrainian)
    -

    Have another language to add, or perhaps a different or better translation? Let us know by opening an issue.

    +

    We don't help organize or host translations, we just link to them.

    +

    Finished a new or better translation? Open a pull request to add it to our list.

    -- cgit v1.2.3 From 983265b08aa3f5a1934eb5f6967885b9742b56cd Mon Sep 17 00:00:00 2001 From: hebbet Date: Sat, 22 Feb 2014 21:49:58 +0100 Subject: Remove second tbody from Supported browsers Removed the second tbody from "Internet Explorer 8 and 9" Table --- docs/getting-started.html | 2 -- 1 file changed, 2 deletions(-) (limited to 'docs/getting-started.html') diff --git a/docs/getting-started.html b/docs/getting-started.html index 440098cb9..afe32ab72 100644 --- a/docs/getting-started.html +++ b/docs/getting-started.html @@ -450,8 +450,6 @@ bootstrap/
    - - -- cgit v1.2.3 From 421e7af1377e5c17156e796c38fd075d3ce2566f Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Wed, 5 Mar 2014 21:48:38 -0800 Subject: add link from Getting Started page to Wall of Browser Bugs page --- docs/getting-started.html | 1 + 1 file changed, 1 insertion(+) (limited to 'docs/getting-started.html') diff --git a/docs/getting-started.html b/docs/getting-started.html index afe32ab72..163a7ffa6 100644 --- a/docs/getting-started.html +++ b/docs/getting-started.html @@ -418,6 +418,7 @@ bootstrap/
    transition Not supported
    placeholder Not supported

    Unofficially, Bootstrap should look and behave well enough in Chromium and Chrome for Linux, Firefox for Linux, and Internet Explorer 7, though they are not officially supported.

    +

    For a list of some of the browser bugs that Bootstrap has to grapple with, see our Wall of browser bugs.

    Internet Explorer 8 and 9

    Internet Explorer 8 and 9 are also supported, however, please be aware that some CSS3 properties and HTML5 elements are not fully supported by these browsers. In addition, Internet Explorer 8 requires the use of Respond.js to enable media query support.

    -- cgit v1.2.3