diff options
| author | Mark Otto <[email protected]> | 2015-09-01 21:16:26 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2015-09-01 21:16:26 -0700 |
| commit | 468a9d9359a1008675b2c19a1fae1d9016a7686d (patch) | |
| tree | 370fc54188ca2f93e102884ddf254d1969eb8ba0 | |
| parent | 8f9e50c02d226f3abc083330f8e30b10b2f6511c (diff) | |
| download | bootstrap-468a9d9359a1008675b2c19a1fae1d9016a7686d.tar.xz bootstrap-468a9d9359a1008675b2c19a1fae1d9016a7686d.zip | |
fixes #17379: override search input box-sizing to match our global overrides
| -rw-r--r-- | scss/_reboot.scss | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scss/_reboot.scss b/scss/_reboot.scss index 8f07a5ec0..2b2721561 100644 --- a/scss/_reboot.scss +++ b/scss/_reboot.scss @@ -284,6 +284,8 @@ input[type="search"] { // be added to `.form-control` as it's not specific enough. For details, see // https://github.com/twbs/bootstrap/issues/11586. -webkit-appearance: none; + // Undo Normalize's default here to match our global overrides. + box-sizing: inherit; } // todo: needed? |
