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:
parent
d4cc8f6dd6
commit
596e7f6533
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue