Skip to content
This repository has been archived by the owner on Sep 5, 2024. It is now read-only.

Commit

Permalink
fix(input): minimize overlapping on iOS
Browse files Browse the repository at this point in the history
  • Loading branch information
Marcy Sutton committed Apr 29, 2015
1 parent f1df6dc commit ea81787
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/components/input/input.scss
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,13 @@ md-input-container {
-moz-appearance: none;
-webkit-appearance: none;
}
input[type="date"],
input[type="datetime-local"],
input[type="month"],
input[type="time"],
input[type="week"] {
min-height: $input-line-height;
}
textarea {
resize: none;
overflow: hidden;
Expand Down Expand Up @@ -141,6 +148,10 @@ md-input-container {
font-size: $input-error-font-size;
line-height: $input-error-height;

&:not(.md-char-counter) {
padding-right: 3rem;
}

&.ng-enter {
transition: $swift-ease-out;
transition-delay: 0.2s;
Expand Down

0 comments on commit ea81787

Please sign in to comment.