diff --git a/scripts/validate-translations.js b/scripts/validate-translations.js index 26d7fbb04..c73c32623 100644 --- a/scripts/validate-translations.js +++ b/scripts/validate-translations.js @@ -36,7 +36,7 @@ const identicalTranslations = [ "Type:", "type", "Google Analytics (GA4)", - "GRAPHWISE – AI THRIVES ON WHOLE DATA", + "
GRAPHWISE
AI THRIVES ON WHOLE DATA
", // File formats: "JSON", diff --git a/src/css/bootstrap-graphdb-theme.css b/src/css/bootstrap-graphdb-theme.css index 472e16f07..d7b511779 100644 --- a/src/css/bootstrap-graphdb-theme.css +++ b/src/css/bootstrap-graphdb-theme.css @@ -24,6 +24,10 @@ --base-background-selected-color: #dcdcdc; /* The base background color that is used for hover effects in panels and elements */ --base-background-hover-color: rgba(0, 0, 0, .1); + + /* Graphwise colors */ + --graphwise-blue-color: #001FFF; + --graphwise-pink-color: #DF367C; } :root.menu-collapsed { diff --git a/src/css/ttyg/chat-panel.css b/src/css/ttyg/chat-panel.css index 170379a91..7c0c423bb 100644 --- a/src/css/ttyg/chat-panel.css +++ b/src/css/ttyg/chat-panel.css @@ -69,7 +69,57 @@ } .chat-panel .messages-hint .hint1 { - font-size: 1.5rem; + font-size: 2rem; + transform:scale(1, 0.8); +} + +.chat-panel .messages-hint .hint1 .graph, +.chat-panel .messages-hint .hint1 .wise { + animation-duration: 3.0s; + animation-delay: 1s; + animation-iteration-count: infinite; + animation-timing-function: ease-out; +} + +.chat-panel .messages-hint .hint1 .graph { + font-weight: 500; + animation-name: change-color-graph; +} + +.chat-panel .messages-hint .hint1 .wise { + animation-name: change-color-wise; +} + +.chat-panel .messages-hint .hint1 .thrives { + font-size: 0.425em; + font-weight: 400; +} + +@keyframes change-color-graph { + 0% { + color: var(--graphwise-blue-color); + } + 40% { + color: inherit; + } + 100% { + color: inherit; + } +} + +@keyframes change-color-wise { + 0% { + color: inherit; + } + 40% { + color: var(--graphwise-pink-color); + } + 80% { + color: inherit; + } + 100% { + color: inherit; + } } .chat-panel .messages-hint .hint2 { diff --git a/src/i18n/locale-en.json b/src/i18n/locale-en.json index a001fa3d1..115e5d992 100644 --- a/src/i18n/locale-en.json +++ b/src/i18n/locale-en.json @@ -276,7 +276,7 @@ } }, "chat_panel": { - "hint1": "GRAPHWISE – AI THRIVES ON WHOLE DATA", + "hint1": "
GRAPHWISE
AI THRIVES ON WHOLE DATA
", "hint2": "Simply ask a question!", "deleted_agent": " deleted agent", "btn": { diff --git a/src/i18n/locale-fr.json b/src/i18n/locale-fr.json index 6d5be01df..eb744efca 100644 --- a/src/i18n/locale-fr.json +++ b/src/i18n/locale-fr.json @@ -276,7 +276,7 @@ } }, "chat_panel": { - "hint1": "GRAPHWISE – AI THRIVES ON WHOLE DATA", + "hint1": "
GRAPHWISE
AI THRIVES ON WHOLE DATA
", "hint2": "Posez simplement une question !", "deleted_agent": " agent supprimé", "btn": { diff --git a/src/js/angular/ttyg/templates/chat-panel.html b/src/js/angular/ttyg/templates/chat-panel.html index 409e0e8fe..691236632 100644 --- a/src/js/angular/ttyg/templates/chat-panel.html +++ b/src/js/angular/ttyg/templates/chat-panel.html @@ -49,7 +49,7 @@
-
+
diff --git a/test-cypress/fixtures/locale-en.json b/test-cypress/fixtures/locale-en.json index a001fa3d1..115e5d992 100644 --- a/test-cypress/fixtures/locale-en.json +++ b/test-cypress/fixtures/locale-en.json @@ -276,7 +276,7 @@ } }, "chat_panel": { - "hint1": "GRAPHWISE – AI THRIVES ON WHOLE DATA", + "hint1": "
GRAPHWISE
AI THRIVES ON WHOLE DATA
", "hint2": "Simply ask a question!", "deleted_agent": " deleted agent", "btn": {