Commit 468a9d93 authored by Mark Otto's avatar Mark Otto

fixes #17379: override search input box-sizing to match our global overrides

parent 8f9e50c0
...@@ -284,6 +284,8 @@ input[type="search"] { ...@@ -284,6 +284,8 @@ input[type="search"] {
// be added to `.form-control` as it's not specific enough. For details, see // be added to `.form-control` as it's not specific enough. For details, see
// https://github.com/twbs/bootstrap/issues/11586. // https://github.com/twbs/bootstrap/issues/11586.
-webkit-appearance: none; -webkit-appearance: none;
// Undo Normalize's default here to match our global overrides.
box-sizing: inherit;
} }
// todo: needed? // todo: needed?
......
Markdown is supported
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