From 63f025a07b71893f69206c2d904b5b2162df8857 Mon Sep 17 00:00:00 2001 From: Lance Willett Date: Mon, 6 Jul 2015 18:02:34 +0000 Subject: [PATCH] Twenty Fifteen: don't hyphenate input elements. Fixes #32880. git-svn-id: https://develop.svn.wordpress.org/trunk@33093 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-content/themes/twentyfifteen/style.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/wp-content/themes/twentyfifteen/style.css b/src/wp-content/themes/twentyfifteen/style.css index e9c35f89d2..2ea6501893 100644 --- a/src/wp-content/themes/twentyfifteen/style.css +++ b/src/wp-content/themes/twentyfifteen/style.css @@ -490,6 +490,10 @@ textarea { button, input { + -webkit-hyphens: none; + -moz-hyphens: none; + -ms-hyphens: none; + hyphens: none; line-height: normal; }