diff --git a/static/javascripts/ken-recap.js b/static/javascripts/ken-recap.js index ef74f33..af22f60 100644 --- a/static/javascripts/ken-recap.js +++ b/static/javascripts/ken-recap.js @@ -505,7 +505,8 @@ function forUploadResultListClickAndEnterPressEvents() { // $textContent.highlightWithinTextarea(onInput); function onInput(input) { - var regex = new RegExp('\\b(\\w*' + $uploadResultList.prop('value') + '\\w*)\\b', 'gi'); + let term = $uploadResultList.prop('value').replace(/\s?([-])\s?/g,'-'); + var regex = new RegExp('\\b(\\w*' + term + '\\w*)\\b', 'gi'); return regex; } $textContent.highlightWithinTextarea(onInput); diff --git a/static/stylesheets/style.css b/static/stylesheets/style.css index e8cb41e..a256e90 100644 --- a/static/stylesheets/style.css +++ b/static/stylesheets/style.css @@ -265,8 +265,8 @@ select { .middle, .inner { border: 3px solid transparent; - border-top-color: #8BC34A; - border-right-color: #8BC34A; + border-top-color: #546E7A; + border-right-color: #546E7A; border-radius: 50%; position: absolute; top: 50%;