From 428dab1069348ab6a4306cff16dddf7f48e87ba7 Mon Sep 17 00:00:00 2001 From: Simon Sapin Date: Fri, 4 Mar 2016 15:25:41 +0100 Subject: [PATCH] Use `cursor: text` in text input areas MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit … not just over text. Fix #9486. --- resources/servo.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/resources/servo.css b/resources/servo.css index 354717deb70..26d8fe90af2 100644 --- a/resources/servo.css +++ b/resources/servo.css @@ -30,3 +30,6 @@ td[align="right"] { text-align: right; } center { text-align: -servo-center; } +input:not([type=radio i]):not([type=checkbox i]):not([type=reset i]):not([type=button i]):not([type=submit i]), +textarea { cursor: text } +