Commit de8c6515 authored by Martijn Cuppens's avatar Martijn Cuppens Committed by XhmikosR
Browse files

Remove appearance from textarea (#29455)

parent 707973eb
2 merge requests!31948Examples/Floating-labels: fix bad behavior with autofill,!30064test
Showing with 0 additions and 2 deletions
+0 -2
...@@ -465,12 +465,10 @@ input[type="month"] { ...@@ -465,12 +465,10 @@ input[type="month"] {
// 1. Remove the default vertical scrollbar in IE. // 1. Remove the default vertical scrollbar in IE.
// 2. Textareas should really only resize vertically so they don't break their (horizontal) containers. // 2. Textareas should really only resize vertically so they don't break their (horizontal) containers.
// 3. Use the same borders as textfields
textarea { textarea {
overflow: auto; // 1 overflow: auto; // 1
resize: vertical; // 2 resize: vertical; // 2
-webkit-appearance: textfield; // 3
} }
// 1. Browsers set a default `min-width: min-content;` on fieldsets, // 1. Browsers set a default `min-width: min-content;` on fieldsets,
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment