From 05b1c625be8137a22bdf9626d9540d1844624fbf Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Wed, 30 Sep 2015 12:35:57 -0700 Subject: Add CSS portion of IE10 viewport bug workaround to docs Refs #17337 --- docs/assets/css/ie10-viewport-bug-workaround.css | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 docs/assets/css/ie10-viewport-bug-workaround.css (limited to 'docs/assets/css') diff --git a/docs/assets/css/ie10-viewport-bug-workaround.css b/docs/assets/css/ie10-viewport-bug-workaround.css new file mode 100644 index 000000000..8b3803b48 --- /dev/null +++ b/docs/assets/css/ie10-viewport-bug-workaround.css @@ -0,0 +1,15 @@ +/*! + * IE10 viewport hack for Surface/desktop Windows 8 bug + * Copyright 2014-2015 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + */ + +/* + * See the Getting Started docs for more information: + * http://getbootstrap.com/getting-started/#support-ie10-width + */ +@-webkit-viewport { width: device-width; } +@-moz-viewport { width: device-width; } +@-ms-viewport { width: device-width; } +@-o-viewport { width: device-width; } +@viewport { width: device-width; } -- cgit v1.2.3