mirror of
https://github.com/twbs/bootstrap.git
synced 2024-11-30 12:24:19 +01:00
Merge pull request #12629 from twbs/search_inputs_ios
Override iOS search input's extra round corners
This commit is contained in:
commit
6814393c9a
@ -150,10 +150,24 @@ output {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Search inputs in iOS
|
||||||
|
//
|
||||||
|
// This overrides the extra rounded corners on search inputs in iOS so that our
|
||||||
|
// `.form-control` class can properly style them. Note that this cannot simply
|
||||||
|
// be added to `.form-control` as it's not specific enough. For details, see
|
||||||
|
// https://github.com/twbs/bootstrap/issues/11586.
|
||||||
|
|
||||||
|
input[type="search"] {
|
||||||
|
-webkit-appearance: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
// Special styles for iOS date input
|
// Special styles for iOS date input
|
||||||
//
|
//
|
||||||
// In Mobile Safari, date inputs require a pixel line-height that matches the
|
// In Mobile Safari, date inputs require a pixel line-height that matches the
|
||||||
// given height of the input.
|
// given height of the input.
|
||||||
|
|
||||||
input[type="date"] {
|
input[type="date"] {
|
||||||
line-height: @input-height-base;
|
line-height: @input-height-base;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user