]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Prevent select word wrap in Safari (#27932)
authorMartijn Cuppens <martijn.cuppens@gmail.com>
Fri, 4 Jan 2019 09:40:10 +0000 (10:40 +0100)
committerXhmikosR <xhmikosr@gmail.com>
Fri, 4 Jan 2019 09:40:10 +0000 (11:40 +0200)
scss/_reboot.scss

index b5c15d53c9337f02711395387173b050e76b5b48..ebbc1790126b38d9beb63535a44c0fa6cef2dba6 100644 (file)
@@ -331,6 +331,14 @@ select {
   text-transform: none; // Remove the inheritance of text transform in Firefox
 }
 
+// Remove the inheritance of word-wrap in Safari.
+//
+// Details at https://github.com/twbs/bootstrap/issues/24990
+select {
+  word-wrap: normal;
+}
+
+
 // 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 //    controls in Android 4.
 // 2. Correct the inability to style clickable types in iOS and Safari.