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