From 596e7f65335a4e54085da278a0bdfcd38e55f12a Mon Sep 17 00:00:00 2001 From: Thomas Gelf Date: Fri, 20 Jun 2014 12:34:33 +0200 Subject: [PATCH] CSS: fix cursor size in chrome This has been introduced by fixing IE8, line-hight==input-heigt looks ugly on chrome. --- public/css/icinga/menu.less | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/public/css/icinga/menu.less b/public/css/icinga/menu.less index bdad995fd..e683fb7c6 100644 --- a/public/css/icinga/menu.less +++ b/public/css/icinga/menu.less @@ -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; }