From 8b33437267453bf09561f6e59f926f3486927789 Mon Sep 17 00:00:00 2001
From: Thomas Hansen
Date: Tue, 17 Oct 2023 14:18:30 +0300
Subject: [PATCH] Select list styling for chatbot
---
.../front.files/chat/burning-sunset.css | 9 ++++
.../system/openai/front.files/chat/chess.css | 9 ++++
.../openai/front.files/chat/default.css | 9 ++++
.../system/openai/front.files/chat/default.js | 43 +++++++++++--------
.../openai/front.files/chat/emerald.css | 9 ++++
.../system/openai/front.files/chat/frank.css | 9 ++++
.../system/openai/front.files/chat/galaxy.css | 9 ++++
.../openai/front.files/chat/lollipop.css | 9 ++++
.../front.files/chat/minimalistic-green.css | 9 ++++
.../front.files/chat/morphed-bubbles.css | 9 ++++
.../openai/front.files/chat/nuomorphism.css | 9 ++++
.../openai/front.files/chat/ocean-bleu.css | 9 ++++
.../system/openai/front.files/chat/office.css | 9 ++++
.../openai/front.files/chat/parakeet.css | 9 ++++
.../front.files/chat/scandinavian-blush.css | 9 ++++
.../chat/scandinavian-chocolate-inline.css | 9 ++++
.../chat/scandinavian-chocolate.css | 9 ++++
.../front.files/chat/scandinavian-cyan.css | 9 ++++
.../chat/scandinavian-deep-teal.css | 9 ++++
.../chat/scandinavian-flamingo.css | 9 ++++
.../front.files/chat/scandinavian-grape.css | 9 ++++
.../front.files/chat/scandinavian-honey.css | 9 ++++
.../front.files/chat/scandinavian-lime.css | 9 ++++
.../front.files/chat/scandinavian-maroon.css | 9 ++++
.../chat/scandinavian-mulberry.css | 9 ++++
.../front.files/chat/scandinavian-navy.css | 9 ++++
.../front.files/chat/scandinavian-orchid.css | 9 ++++
.../front.files/chat/scandinavian-pumpkin.css | 9 ++++
.../front.files/chat/scandinavian-raven.css | 9 ++++
.../front.files/chat/scandinavian-scarlet.css | 9 ++++
.../front.files/chat/scandinavian-teal.css | 9 ++++
.../openai/front.files/chat/sunflower.css | 9 ++++
.../openai/front.files/chat/twilight.css | 10 +++++
33 files changed, 313 insertions(+), 19 deletions(-)
diff --git a/backend/files/system/openai/front.files/chat/burning-sunset.css b/backend/files/system/openai/front.files/chat/burning-sunset.css
index 2ea3164648..ba894238d2 100644
--- a/backend/files/system/openai/front.files/chat/burning-sunset.css
+++ b/backend/files/system/openai/front.files/chat/burning-sunset.css
@@ -453,3 +453,12 @@
color: #030a0a !important;
opacity:40% !important;
}
+.ainiro-select-list {
+ display: block;
+ margin: 10px 0;
+ width: 100%;
+ padding: 10px;
+ outline: none;
+ border-radius: 10px;
+ border: solid 1px rgba(0,0,0,.3);
+}
diff --git a/backend/files/system/openai/front.files/chat/chess.css b/backend/files/system/openai/front.files/chat/chess.css
index 5f5967d105..1b239d6b1d 100644
--- a/backend/files/system/openai/front.files/chat/chess.css
+++ b/backend/files/system/openai/front.files/chat/chess.css
@@ -451,3 +451,12 @@
.aista-chat-prompt::placeholder {
color: rgb(180,181,188) !important;
}
+.ainiro-select-list {
+ display: block;
+ margin: 10px 0;
+ width: 100%;
+ padding: 10px;
+ outline: none;
+ border-radius: 10px;
+ border: solid 1px rgba(0,0,0,.3);
+}
diff --git a/backend/files/system/openai/front.files/chat/default.css b/backend/files/system/openai/front.files/chat/default.css
index 03d243f0b5..fbd635142d 100644
--- a/backend/files/system/openai/front.files/chat/default.css
+++ b/backend/files/system/openai/front.files/chat/default.css
@@ -402,3 +402,12 @@
.aista-chat-prompt::placeholder {
color: rgb(180,181,188) !important;
}
+.ainiro-select-list {
+ display: block;
+ margin: 10px 0;
+ width: 100%;
+ padding: 10px;
+ outline: none;
+ border-radius: 10px;
+ border: solid 1px rgba(0,0,0,.3);
+}
diff --git a/backend/files/system/openai/front.files/chat/default.js b/backend/files/system/openai/front.files/chat/default.js
index 911ba9ab20..75e4912dbc 100644
--- a/backend/files/system/openai/front.files/chat/default.js
+++ b/backend/files/system/openai/front.files/chat/default.js
@@ -37,6 +37,25 @@ let ainiro_references = [];
// Type or model to use.
let ainiroChatbotType = '[[type]]';
+/*
+ * "API method" for FAQ questions.
+ */
+window.ainiro_faq_question = function(e) {
+
+ const question = e.srcElement.innerHTML;
+ aista_show_chat_window();
+ setTimeout(() => {
+ const prompt = document.getElementsByClassName('aista-chat-prompt')[0];
+ if (!ainiroQuestionnaire.questions || ainiroQuestionnaire.questions.length === 0) {
+ prompt.value = question;
+ prompt.focus();
+ prompt.select();
+ }
+ }, 1);
+ e.preventDefault();
+ e.stopPropagation();
+}
+
// Downloading icofont, making sure we only download it once.
if (!window.ainiroHasDownloadIcofont) {
window.ainiroHasDownloadIcofont = true;
@@ -91,25 +110,6 @@ window.document.getElementsByTagName('head')[0].appendChild(icofontCss);
// Creating our chat UI.
aista_create_chat_ui();
-/*
- * "API method" for FAQ questions.
- */
-window.ainiro_faq_question = function(e) {
-
- const question = e.srcElement.innerHTML;
- aista_show_chat_window();
- setTimeout(() => {
- const prompt = document.getElementsByClassName('aista-chat-prompt')[0];
- if (!ainiroQuestionnaire.questions || ainiroQuestionnaire.questions.length === 0) {
- prompt.value = question;
- prompt.focus();
- prompt.select();
- }
- }, 1);
- e.preventDefault();
- e.stopPropagation();
-}
-
/*
* Function creating our chat UI.
*/
@@ -240,6 +240,11 @@ function aista_create_chat_ui() {
const msgs = window.document.getElementsByClassName('aista-chat-msg-container')[0];
msgs.appendChild(row);
}
+
+ // Checking if we've got a global callback that should be invoked as we've created our window.
+ if (window.ainiroInitializeChatWindow) {
+ window.ainiroInitializeChatWindow();
+ }
}
function ainiro_create_wait_animation() {
diff --git a/backend/files/system/openai/front.files/chat/emerald.css b/backend/files/system/openai/front.files/chat/emerald.css
index d830ade218..5309df7d21 100644
--- a/backend/files/system/openai/front.files/chat/emerald.css
+++ b/backend/files/system/openai/front.files/chat/emerald.css
@@ -455,3 +455,12 @@
color: #030a0a !important;
opacity:40% !important;
}
+.ainiro-select-list {
+ display: block;
+ margin: 10px 0;
+ width: 100%;
+ padding: 10px;
+ outline: none;
+ border-radius: 10px;
+ border: solid 1px rgba(0,0,0,.3);
+}
diff --git a/backend/files/system/openai/front.files/chat/frank.css b/backend/files/system/openai/front.files/chat/frank.css
index bce3639972..4e4dd22245 100644
--- a/backend/files/system/openai/front.files/chat/frank.css
+++ b/backend/files/system/openai/front.files/chat/frank.css
@@ -450,3 +450,12 @@
color: #030a0a !important;
opacity:40% !important;
}
+.ainiro-select-list {
+ display: block;
+ margin: 10px 0;
+ width: 100%;
+ padding: 10px;
+ outline: none;
+ border-radius: 10px;
+ border: solid 1px rgba(0,0,0,.3);
+}
diff --git a/backend/files/system/openai/front.files/chat/galaxy.css b/backend/files/system/openai/front.files/chat/galaxy.css
index bbd78e9cb3..91822d5306 100644
--- a/backend/files/system/openai/front.files/chat/galaxy.css
+++ b/backend/files/system/openai/front.files/chat/galaxy.css
@@ -455,3 +455,12 @@
color: #030a0a !important;
opacity:40% !important;
}
+.ainiro-select-list {
+ display: block;
+ margin: 10px 0;
+ width: 100%;
+ padding: 10px;
+ outline: none;
+ border-radius: 10px;
+ border: solid 1px rgba(0,0,0,.3);
+}
diff --git a/backend/files/system/openai/front.files/chat/lollipop.css b/backend/files/system/openai/front.files/chat/lollipop.css
index 36414186d0..7b83abb1b5 100644
--- a/backend/files/system/openai/front.files/chat/lollipop.css
+++ b/backend/files/system/openai/front.files/chat/lollipop.css
@@ -454,3 +454,12 @@
color: #030a0a !important;
opacity:40% !important;
}
+.ainiro-select-list {
+ display: block;
+ margin: 10px 0;
+ width: 100%;
+ padding: 10px;
+ outline: none;
+ border-radius: 10px;
+ border: solid 1px rgba(0,0,0,.3);
+}
diff --git a/backend/files/system/openai/front.files/chat/minimalistic-green.css b/backend/files/system/openai/front.files/chat/minimalistic-green.css
index 219f80282b..e68b13d910 100644
--- a/backend/files/system/openai/front.files/chat/minimalistic-green.css
+++ b/backend/files/system/openai/front.files/chat/minimalistic-green.css
@@ -448,3 +448,12 @@
.aista-chat-prompt::placeholder {
color: rgb(180,181,188) !important;
}
+.ainiro-select-list {
+ display: block;
+ margin: 10px 0;
+ width: 100%;
+ padding: 10px;
+ outline: none;
+ border-radius: 10px;
+ border: solid 1px rgba(0,0,0,.3);
+}
diff --git a/backend/files/system/openai/front.files/chat/morphed-bubbles.css b/backend/files/system/openai/front.files/chat/morphed-bubbles.css
index d9460503f2..ee38696ce8 100644
--- a/backend/files/system/openai/front.files/chat/morphed-bubbles.css
+++ b/backend/files/system/openai/front.files/chat/morphed-bubbles.css
@@ -460,3 +460,12 @@
.aista-chat-prompt::placeholder {
color: rgb(198,198,198) !important;
}
+.ainiro-select-list {
+ display: block;
+ margin: 10px 0;
+ width: 100%;
+ padding: 10px;
+ outline: none;
+ border-radius: 10px;
+ border: solid 1px rgba(0,0,0,.3);
+}
diff --git a/backend/files/system/openai/front.files/chat/nuomorphism.css b/backend/files/system/openai/front.files/chat/nuomorphism.css
index 0dc82d6d19..b2c1ec7a38 100644
--- a/backend/files/system/openai/front.files/chat/nuomorphism.css
+++ b/backend/files/system/openai/front.files/chat/nuomorphism.css
@@ -447,3 +447,12 @@
.aista-chat-prompt::placeholder {
color: rgb(180,181,188) !important;
}
+.ainiro-select-list {
+ display: block;
+ margin: 10px 0;
+ width: 100%;
+ padding: 10px;
+ outline: none;
+ border-radius: 10px;
+ border: solid 1px rgba(0,0,0,.3);
+}
diff --git a/backend/files/system/openai/front.files/chat/ocean-bleu.css b/backend/files/system/openai/front.files/chat/ocean-bleu.css
index 785262723d..0b03cea2c2 100644
--- a/backend/files/system/openai/front.files/chat/ocean-bleu.css
+++ b/backend/files/system/openai/front.files/chat/ocean-bleu.css
@@ -454,3 +454,12 @@
color: #030a0a !important;
opacity:40% !important;
}
+.ainiro-select-list {
+ display: block;
+ margin: 10px 0;
+ width: 100%;
+ padding: 10px;
+ outline: none;
+ border-radius: 10px;
+ border: solid 1px rgba(0,0,0,.3);
+}
diff --git a/backend/files/system/openai/front.files/chat/office.css b/backend/files/system/openai/front.files/chat/office.css
index 85aa42a9df..1b88302ac8 100644
--- a/backend/files/system/openai/front.files/chat/office.css
+++ b/backend/files/system/openai/front.files/chat/office.css
@@ -419,3 +419,12 @@
.aista-chat-prompt::placeholder {
color: rgb(180,181,188) !important;
}
+.ainiro-select-list {
+ display: block;
+ margin: 10px 0;
+ width: 100%;
+ padding: 10px;
+ outline: none;
+ border-radius: 10px;
+ border: solid 1px rgba(0,0,0,.3);
+}
diff --git a/backend/files/system/openai/front.files/chat/parakeet.css b/backend/files/system/openai/front.files/chat/parakeet.css
index 9b5bb1779b..8c21a4c81e 100644
--- a/backend/files/system/openai/front.files/chat/parakeet.css
+++ b/backend/files/system/openai/front.files/chat/parakeet.css
@@ -455,3 +455,12 @@
color: #030a0a !important;
opacity:40% !important;
}
+.ainiro-select-list {
+ display: block;
+ margin: 10px 0;
+ width: 100%;
+ padding: 10px;
+ outline: none;
+ border-radius: 10px;
+ border: solid 1px rgba(0,0,0,.3);
+}
diff --git a/backend/files/system/openai/front.files/chat/scandinavian-blush.css b/backend/files/system/openai/front.files/chat/scandinavian-blush.css
index 35d455b6f4..8c1e2f5919 100644
--- a/backend/files/system/openai/front.files/chat/scandinavian-blush.css
+++ b/backend/files/system/openai/front.files/chat/scandinavian-blush.css
@@ -454,3 +454,12 @@
.aista-chat-prompt::placeholder {
color: rgb(180,181,188) !important;
}
+.ainiro-select-list {
+ display: block;
+ margin: 10px 0;
+ width: 100%;
+ padding: 10px;
+ outline: none;
+ border-radius: 10px;
+ border: solid 1px rgba(0,0,0,.3);
+}
diff --git a/backend/files/system/openai/front.files/chat/scandinavian-chocolate-inline.css b/backend/files/system/openai/front.files/chat/scandinavian-chocolate-inline.css
index c2c60a5888..a713ea784d 100644
--- a/backend/files/system/openai/front.files/chat/scandinavian-chocolate-inline.css
+++ b/backend/files/system/openai/front.files/chat/scandinavian-chocolate-inline.css
@@ -468,3 +468,12 @@
.aista-chat-close-btn {
display: none !important;
}
+.ainiro-select-list {
+ display: block;
+ margin: 10px 0;
+ width: 100%;
+ padding: 10px;
+ outline: none;
+ border-radius: 10px;
+ border: solid 1px rgba(0,0,0,.3);
+}
diff --git a/backend/files/system/openai/front.files/chat/scandinavian-chocolate.css b/backend/files/system/openai/front.files/chat/scandinavian-chocolate.css
index bd69a97462..da6319404a 100644
--- a/backend/files/system/openai/front.files/chat/scandinavian-chocolate.css
+++ b/backend/files/system/openai/front.files/chat/scandinavian-chocolate.css
@@ -459,3 +459,12 @@
.aista-chat-prompt::placeholder {
color: rgb(180,181,188) !important;
}
+.ainiro-select-list {
+ display: block;
+ margin: 10px 0;
+ width: 100%;
+ padding: 10px;
+ outline: none;
+ border-radius: 10px;
+ border: solid 1px rgba(0,0,0,.3);
+}
diff --git a/backend/files/system/openai/front.files/chat/scandinavian-cyan.css b/backend/files/system/openai/front.files/chat/scandinavian-cyan.css
index 9947ab9df1..9e445257af 100644
--- a/backend/files/system/openai/front.files/chat/scandinavian-cyan.css
+++ b/backend/files/system/openai/front.files/chat/scandinavian-cyan.css
@@ -454,3 +454,12 @@
.aista-chat-prompt::placeholder {
color: rgb(180,181,188) !important;
}
+.ainiro-select-list {
+ display: block;
+ margin: 10px 0;
+ width: 100%;
+ padding: 10px;
+ outline: none;
+ border-radius: 10px;
+ border: solid 1px rgba(0,0,0,.3);
+}
diff --git a/backend/files/system/openai/front.files/chat/scandinavian-deep-teal.css b/backend/files/system/openai/front.files/chat/scandinavian-deep-teal.css
index 01bd82d498..e1643f542a 100644
--- a/backend/files/system/openai/front.files/chat/scandinavian-deep-teal.css
+++ b/backend/files/system/openai/front.files/chat/scandinavian-deep-teal.css
@@ -455,3 +455,12 @@
.aista-chat-prompt::placeholder {
color: rgb(180,181,188) !important;
}
+.ainiro-select-list {
+ display: block;
+ margin: 10px 0;
+ width: 100%;
+ padding: 10px;
+ outline: none;
+ border-radius: 10px;
+ border: solid 1px rgba(0,0,0,.3);
+}
diff --git a/backend/files/system/openai/front.files/chat/scandinavian-flamingo.css b/backend/files/system/openai/front.files/chat/scandinavian-flamingo.css
index 1d1725137b..9b5fb95ff5 100644
--- a/backend/files/system/openai/front.files/chat/scandinavian-flamingo.css
+++ b/backend/files/system/openai/front.files/chat/scandinavian-flamingo.css
@@ -454,3 +454,12 @@
.aista-chat-prompt::placeholder {
color: rgb(180,181,188) !important;
}
+.ainiro-select-list {
+ display: block;
+ margin: 10px 0;
+ width: 100%;
+ padding: 10px;
+ outline: none;
+ border-radius: 10px;
+ border: solid 1px rgba(0,0,0,.3);
+}
diff --git a/backend/files/system/openai/front.files/chat/scandinavian-grape.css b/backend/files/system/openai/front.files/chat/scandinavian-grape.css
index 85a71a4538..83ed53e312 100644
--- a/backend/files/system/openai/front.files/chat/scandinavian-grape.css
+++ b/backend/files/system/openai/front.files/chat/scandinavian-grape.css
@@ -455,3 +455,12 @@
.aista-chat-prompt::placeholder {
color: rgb(180,181,188) !important;
}
+.ainiro-select-list {
+ display: block;
+ margin: 10px 0;
+ width: 100%;
+ padding: 10px;
+ outline: none;
+ border-radius: 10px;
+ border: solid 1px rgba(0,0,0,.3);
+}
diff --git a/backend/files/system/openai/front.files/chat/scandinavian-honey.css b/backend/files/system/openai/front.files/chat/scandinavian-honey.css
index 80c813a3db..8cc94368d6 100644
--- a/backend/files/system/openai/front.files/chat/scandinavian-honey.css
+++ b/backend/files/system/openai/front.files/chat/scandinavian-honey.css
@@ -454,3 +454,12 @@
.aista-chat-prompt::placeholder {
color: rgb(180,181,188) !important;
}
+.ainiro-select-list {
+ display: block;
+ margin: 10px 0;
+ width: 100%;
+ padding: 10px;
+ outline: none;
+ border-radius: 10px;
+ border: solid 1px rgba(0,0,0,.3);
+}
diff --git a/backend/files/system/openai/front.files/chat/scandinavian-lime.css b/backend/files/system/openai/front.files/chat/scandinavian-lime.css
index 2d594f514c..b429f3e43b 100644
--- a/backend/files/system/openai/front.files/chat/scandinavian-lime.css
+++ b/backend/files/system/openai/front.files/chat/scandinavian-lime.css
@@ -455,3 +455,12 @@
.aista-chat-prompt::placeholder {
color: rgb(180,181,188) !important;
}
+.ainiro-select-list {
+ display: block;
+ margin: 10px 0;
+ width: 100%;
+ padding: 10px;
+ outline: none;
+ border-radius: 10px;
+ border: solid 1px rgba(0,0,0,.3);
+}
diff --git a/backend/files/system/openai/front.files/chat/scandinavian-maroon.css b/backend/files/system/openai/front.files/chat/scandinavian-maroon.css
index 01ad1a9d06..0561455ba3 100644
--- a/backend/files/system/openai/front.files/chat/scandinavian-maroon.css
+++ b/backend/files/system/openai/front.files/chat/scandinavian-maroon.css
@@ -454,3 +454,12 @@
.aista-chat-prompt::placeholder {
color: rgb(180,181,188) !important;
}
+.ainiro-select-list {
+ display: block;
+ margin: 10px 0;
+ width: 100%;
+ padding: 10px;
+ outline: none;
+ border-radius: 10px;
+ border: solid 1px rgba(0,0,0,.3);
+}
diff --git a/backend/files/system/openai/front.files/chat/scandinavian-mulberry.css b/backend/files/system/openai/front.files/chat/scandinavian-mulberry.css
index ff90aa185a..5f494e973f 100644
--- a/backend/files/system/openai/front.files/chat/scandinavian-mulberry.css
+++ b/backend/files/system/openai/front.files/chat/scandinavian-mulberry.css
@@ -455,3 +455,12 @@
.aista-chat-prompt::placeholder {
color: rgb(180,181,188) !important;
}
+.ainiro-select-list {
+ display: block;
+ margin: 10px 0;
+ width: 100%;
+ padding: 10px;
+ outline: none;
+ border-radius: 10px;
+ border: solid 1px rgba(0,0,0,.3);
+}
diff --git a/backend/files/system/openai/front.files/chat/scandinavian-navy.css b/backend/files/system/openai/front.files/chat/scandinavian-navy.css
index 1bc7b4ac9c..5dbb6d7761 100644
--- a/backend/files/system/openai/front.files/chat/scandinavian-navy.css
+++ b/backend/files/system/openai/front.files/chat/scandinavian-navy.css
@@ -455,3 +455,12 @@
.aista-chat-prompt::placeholder {
color: rgb(180,181,188) !important;
}
+.ainiro-select-list {
+ display: block;
+ margin: 10px 0;
+ width: 100%;
+ padding: 10px;
+ outline: none;
+ border-radius: 10px;
+ border: solid 1px rgba(0,0,0,.3);
+}
diff --git a/backend/files/system/openai/front.files/chat/scandinavian-orchid.css b/backend/files/system/openai/front.files/chat/scandinavian-orchid.css
index d7c4b06f1a..44be7d169f 100644
--- a/backend/files/system/openai/front.files/chat/scandinavian-orchid.css
+++ b/backend/files/system/openai/front.files/chat/scandinavian-orchid.css
@@ -454,3 +454,12 @@
.aista-chat-prompt::placeholder {
color: rgb(180,181,188) !important;
}
+.ainiro-select-list {
+ display: block;
+ margin: 10px 0;
+ width: 100%;
+ padding: 10px;
+ outline: none;
+ border-radius: 10px;
+ border: solid 1px rgba(0,0,0,.3);
+}
diff --git a/backend/files/system/openai/front.files/chat/scandinavian-pumpkin.css b/backend/files/system/openai/front.files/chat/scandinavian-pumpkin.css
index 576c298ead..b54d21bed2 100644
--- a/backend/files/system/openai/front.files/chat/scandinavian-pumpkin.css
+++ b/backend/files/system/openai/front.files/chat/scandinavian-pumpkin.css
@@ -455,3 +455,12 @@
.aista-chat-prompt::placeholder {
color: rgb(180,181,188) !important;
}
+.ainiro-select-list {
+ display: block;
+ margin: 10px 0;
+ width: 100%;
+ padding: 10px;
+ outline: none;
+ border-radius: 10px;
+ border: solid 1px rgba(0,0,0,.3);
+}
diff --git a/backend/files/system/openai/front.files/chat/scandinavian-raven.css b/backend/files/system/openai/front.files/chat/scandinavian-raven.css
index 29d9e89afa..f98d24c1b0 100644
--- a/backend/files/system/openai/front.files/chat/scandinavian-raven.css
+++ b/backend/files/system/openai/front.files/chat/scandinavian-raven.css
@@ -454,3 +454,12 @@
.aista-chat-prompt::placeholder {
color: rgb(180,181,188) !important;
}
+.ainiro-select-list {
+ display: block;
+ margin: 10px 0;
+ width: 100%;
+ padding: 10px;
+ outline: none;
+ border-radius: 10px;
+ border: solid 1px rgba(0,0,0,.3);
+}
diff --git a/backend/files/system/openai/front.files/chat/scandinavian-scarlet.css b/backend/files/system/openai/front.files/chat/scandinavian-scarlet.css
index 9985bffc1a..e903a46ced 100644
--- a/backend/files/system/openai/front.files/chat/scandinavian-scarlet.css
+++ b/backend/files/system/openai/front.files/chat/scandinavian-scarlet.css
@@ -455,3 +455,12 @@
.aista-chat-prompt::placeholder {
color: rgb(180,181,188) !important;
}
+.ainiro-select-list {
+ display: block;
+ margin: 10px 0;
+ width: 100%;
+ padding: 10px;
+ outline: none;
+ border-radius: 10px;
+ border: solid 1px rgba(0,0,0,.3);
+}
diff --git a/backend/files/system/openai/front.files/chat/scandinavian-teal.css b/backend/files/system/openai/front.files/chat/scandinavian-teal.css
index 72c55ae1b4..8c81af962e 100644
--- a/backend/files/system/openai/front.files/chat/scandinavian-teal.css
+++ b/backend/files/system/openai/front.files/chat/scandinavian-teal.css
@@ -454,3 +454,12 @@
.aista-chat-prompt::placeholder {
color: rgb(180,181,188) !important;
}
+.ainiro-select-list {
+ display: block;
+ margin: 10px 0;
+ width: 100%;
+ padding: 10px;
+ outline: none;
+ border-radius: 10px;
+ border: solid 1px rgba(0,0,0,.3);
+}
diff --git a/backend/files/system/openai/front.files/chat/sunflower.css b/backend/files/system/openai/front.files/chat/sunflower.css
index c5db898480..fdca9aea41 100644
--- a/backend/files/system/openai/front.files/chat/sunflower.css
+++ b/backend/files/system/openai/front.files/chat/sunflower.css
@@ -455,3 +455,12 @@
color: #030a0a !important;
opacity:40% !important;
}
+.ainiro-select-list {
+ display: block;
+ margin: 10px 0;
+ width: 100%;
+ padding: 10px;
+ outline: none;
+ border-radius: 10px;
+ border: solid 1px rgba(0,0,0,.3);
+}
diff --git a/backend/files/system/openai/front.files/chat/twilight.css b/backend/files/system/openai/front.files/chat/twilight.css
index 52a6350be3..d6ff3f9158 100644
--- a/backend/files/system/openai/front.files/chat/twilight.css
+++ b/backend/files/system/openai/front.files/chat/twilight.css
@@ -454,3 +454,13 @@
color: #030a0a !important;
opacity:40% !important;
}
+.ainiro-select-list {
+ display: block;
+ margin: 10px 0;
+ width: 100%;
+ padding: 10px;
+ outline: none;
+ border-radius: 10px;
+ border: solid 1px rgba(0,0,0,.3);
+}
+
|