Skip to content

Commit

Permalink
Fix issue 26 (#27)
Browse files Browse the repository at this point in the history
* Fixed icons in the search bar mis-aligned vertically
* Fixed search text INVISIBLE in the search bar on IE
* Removed additional small 'x' on the right side of the search bar on IE and Edge
  • Loading branch information
firstor authored and ronnyroeller committed Aug 21, 2017
1 parent 52dca65 commit 07a9e3a
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions paper-search-bar.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@
padding: 0 16px;
@apply --layout-horizontal;
@apply --layout-center-center;
min-height: 48px;
max-height: 48px;
height: var(--paper-search-bar-height, 48px); /* To resolve `min-height` bug on IE 11 */
box-sizing: border-box;
}

iron-input {
@apply --layout-flex;
@apply --layout-vertical;
height: 100%; /* To resolve `min-height` bug on IE 11 */
}

.icon {
Expand All @@ -51,6 +51,9 @@
border: 0;
outline: 0;
}
#input::-ms-clear {
display: none;
}

#input[disabled] {
@apply --disabled-input-styles;
Expand Down

0 comments on commit 07a9e3a

Please sign in to comment.