aboutsummaryrefslogtreecommitdiff
path: root/less/forms.less
diff options
context:
space:
mode:
authorRob Fletcher <[email protected]>2014-03-17 14:36:58 +0000
committerChris Rebert <[email protected]>2014-03-20 01:13:21 -0700
commit1be0b57d34c4712ba747ccb0e917acef2117dc13 (patch)
tree7452b7e92011053dad54a9a7c7c57fdee728ad57 /less/forms.less
parentf2952aeccf4e5653bd7fc2ba3f7ca183e570ab3e (diff)
downloadbootstrap-1be0b57d34c4712ba747ccb0e917acef2117dc13.tar.xz
bootstrap-1be0b57d34c4712ba747ccb0e917acef2117dc13.zip
Fix vertical alignment of temporal inputs on iOS
Fixes #13098 Closes #13099
Diffstat (limited to 'less/forms.less')
-rw-r--r--less/forms.less5
1 files changed, 4 insertions, 1 deletions
diff --git a/less/forms.less b/less/forms.less
index 8578e8ce6..f8de2e403 100644
--- a/less/forms.less
+++ b/less/forms.less
@@ -170,7 +170,10 @@ input[type="search"] {
// given height of the input. Since this fucks up everything else, we have to
// appropriately reset it for Internet Explorer and the size variations.
-input[type="date"] {
+input[type="date"],
+input[type="time"],
+input[type="datetime-local"],
+input[type="month"] {
line-height: @input-height-base;
// IE8+ misaligns the text within date inputs, so we reset
line-height: @line-height-base ~"\0";