Merge pull request #641 from sharelatex/as-fix-autocomplete-blur

Fix blurry autocomplete highlight on Chrome
This commit is contained in:
Alasdair Smith 2018-06-07 11:44:25 +01:00 committed by GitHub
commit 89ecb9f01b

View file

@ -213,11 +213,10 @@ define [
try
chromeVersion = parseFloat(navigator.userAgent.split(" Chrome/")[1]) || null;
browserIsChrome61or62 = (
chromeVersion? &&
(chromeVersion == 61 || chromeVersion == 62)
chromeVersion?
)
if browserIsChrome61or62
document.styleSheets[0].insertRule(".ace_editor.ace_autocomplete .ace_completion-highlight { text-shadow: none !important; }", 1)
document.styleSheets[0].insertRule(".ace_editor.ace_autocomplete .ace_completion-highlight { text-shadow: none !important; font-weight: bold; }", 1)
catch err
console.error err