diff options
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/carousel.less | 6 | ||||
| -rw-r--r-- | lib/forms.less | 3 |
2 files changed, 8 insertions, 1 deletions
diff --git a/lib/carousel.less b/lib/carousel.less index b0e95bfe9..254a9f60c 100644 --- a/lib/carousel.less +++ b/lib/carousel.less @@ -20,6 +20,12 @@ .transition(.6s ease-in-out left); } + // Account for jankitude on images + .item > img { + display: block; + line-height: 1; + } + .active, .next, .prev { display: block; } diff --git a/lib/forms.less b/lib/forms.less index 178c21018..3b35a172c 100644 --- a/lib/forms.less +++ b/lib/forms.less @@ -52,7 +52,7 @@ input, textarea, select, .uneditable-input { - display: block; + display: inline-block; width: 210px; height: @baseLineHeight; padding: 4px; @@ -283,6 +283,7 @@ textarea[readonly] { } // Style inputs accordingly input, + select, textarea { color: @textColor; border-color: @borderColor; |
