diff --git a/backend/domain.yml b/backend/domain.yml index a03e9d0..7b9f64a 100644 --- a/backend/domain.yml +++ b/backend/domain.yml @@ -1559,6 +1559,7 @@ responses: title: "10 (Good)" text: "Please complete the following statement: 'Making plans for taking walks is...'" + utter_attitude_repeat: - text: "So your attitude is {attitude}." diff --git a/frontend/static/css/style.css b/frontend/static/css/style.css index 5801715..4add9eb 100644 --- a/frontend/static/css/style.css +++ b/frontend/static/css/style.css @@ -206,6 +206,7 @@ textarea-webkit-scrollbar { width: 100%; padding: 5px; border-radius: 0px 0px 10px 10px; + animation: border-flicker-green 0.5s linear; } #sendButton { diff --git a/frontend/static/js/script.js b/frontend/static/js/script.js index f544d67..8e0c95e 100644 --- a/frontend/static/js/script.js +++ b/frontend/static/js/script.js @@ -562,6 +562,7 @@ function doScaledTimeout(i, response, summed_timeout) { }, summed_timeout); } + function blink_and_select() { document.getElementById("userInput").focus(); document.getElementById("userInput").select(); @@ -572,9 +573,6 @@ function blink_and_select() { f.style.animation = 'none'; }, 5000); - - -} //====================================== Toggle chatbot =======================================