CSS: fix cursor size in chrome

This has been introduced by fixing IE8, line-hight==input-heigt looks
ugly on chrome.
This commit is contained in:
Thomas Gelf 2014-06-20 12:34:33 +02:00
parent d4cc8f6dd6
commit 596e7f6533
1 changed files with 4 additions and 1 deletions

View File

@ -213,7 +213,6 @@
border: none;
width: 100%;
border-radius: 0;
line-height: 2.5em;
height: 2.5em;
display: block;
outline: none;
@ -226,6 +225,10 @@
border-bottom: 1px solid #888;
}
html.ie8 #menu input.search {
line-height: 2.5em;
}
#menu input.search:-ms-input-placeholder {
color: #f5f5f5;
}