From 5212026620258df30b628fcc05cca0ff1ac408ae Mon Sep 17 00:00:00 2001 From: Shubham Padia Date: Fri, 8 Jun 2018 20:28:49 +0530 Subject: [PATCH] search: Change letter-spacing to normal for search box. The letter-spacing was changed last in commit fc4d80d94166b2801edc4135d848bfdb244ed9c2 which is about a 5 year old commit at the point of writing. The change is removed as I did not notice any visual change on removing it. Changing the letter spacing to normal lets the text in the pills be seen legibly, otherwise the characters were overlapping. --- static/styles/zulip.scss | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/static/styles/zulip.scss b/static/styles/zulip.scss index 9206fc6a3c..e1e70d7c94 100644 --- a/static/styles/zulip.scss +++ b/static/styles/zulip.scss @@ -1941,15 +1941,8 @@ nav a .no-style { } #search_arrows { - /* Bootstrap wants font-size: 0 to eliminate space between - the buttons. We need to inherit the font size, so we - remove the button gap by adjusting "letter" spacing. */ font-size: 90%; - letter-spacing: -.3em; - } - - #search_arrows .input { - letter-spacing: normal; + letter-spacing: normal } }