aboutsummaryrefslogtreecommitdiff
path: root/docs/_includes/getting-started/browser-device-support.html
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2014-05-20 23:27:40 -0700
committerMark Otto <[email protected]>2014-05-20 23:27:40 -0700
commit707b362b801d7a430c1911493a65085e81b4ee8d (patch)
treeb659b23c3884e9100c1e800161e96110a0853294 /docs/_includes/getting-started/browser-device-support.html
parentbdd822a94cdf2d452e067569e76ca1537dc74d8d (diff)
parent3dd1531d81c90d6d1cf04962032f868d315ab21c (diff)
downloadbootstrap-707b362b801d7a430c1911493a65085e81b4ee8d.tar.xz
bootstrap-707b362b801d7a430c1911493a65085e81b4ee8d.zip
Merge branch 'master' into docs-theme-toggler
Conflicts: docs/assets/css/docs.min.css
Diffstat (limited to 'docs/_includes/getting-started/browser-device-support.html')
-rw-r--r--docs/_includes/getting-started/browser-device-support.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/_includes/getting-started/browser-device-support.html b/docs/_includes/getting-started/browser-device-support.html
index a799bbb96..1a1236440 100644
--- a/docs/_includes/getting-started/browser-device-support.html
+++ b/docs/_includes/getting-started/browser-device-support.html
@@ -173,7 +173,7 @@ if (navigator.userAgent.match(/IEMobile\/10\.0/)) {
<h3 id="support-android-stock-browser">Android stock browser</h3>
<p>Out of the box, Android 4.1 (and even some newer releases apparently) ship with the Browser app as the default web browser of choice (as opposed to Chrome). Unfortunately, the Browser app has lots of bugs and inconsistencies with CSS in general.</p>
<h4>Select menus</h4>
- <p>On <code>&lt;select&gt;</code> elements, the Android stock browser will not display the side controls if there is a <code>border-radius</code> and/or <code>border</code> applied. Use the snippet of code below to remove the offending CSS and render the <code>&lt;select&gt;</code> as an unstyled element on the Android stock browser. The user agent sniffing avoids interference with Chrome, Safari, and Mozilla browsers.</p>
+ <p>On <code>&lt;select&gt;</code> elements, the Android stock browser will not display the side controls if there is a <code>border-radius</code> and/or <code>border</code> applied. (See <a href="http://stackoverflow.com/questions/14744437/html-select-box-not-showing-drop-down-arrow-on-android-version-4-0-when-set-with">this StackOverflow question</a> for details.) Use the snippet of code below to remove the offending CSS and render the <code>&lt;select&gt;</code> as an unstyled element on the Android stock browser. The user agent sniffing avoids interference with Chrome, Safari, and Mozilla browsers.</p>
{% highlight html %}
<script>
$(function () {