Skip to content

Commit b236020

Browse files
committedMar 6, 2025·
Some visual adjustments to Octavia, improved visual consistency in dark mode.
1 parent 63ea33f commit b236020

File tree

4 files changed

+32
-1
lines changed

4 files changed

+32
-1
lines changed
 

‎docusaurus/docusaurus.config.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -151,14 +151,17 @@ const config = {
151151
assistantId: "d1399022-d7e2-4404-bd16-8b3ad2b5465b",
152152
enabled: true,
153153
defaultView: {
154-
message: "Hi! I'm Octavia, an AI. **I'm still learning and might make mistakes**. How can I help?",
154+
message: "Hi! I'm Octavia. How can I help? **I'm an AI, but I'm still learning and might make mistakes**. ",
155155
prompts: [
156156
"What's Airbyte?",
157157
"Can I try Airbyte quickly?",
158158
"How do I use Terraform with Airbyte?",
159159
"Is there an enterprise version?"
160160
]
161161
},
162+
avatars: {
163+
assistant: 'img/octavia-talking.png',
164+
}
162165
},
163166
// By setting `floating` to false, use the standard navbar search component.
164167
trigger: { floating: false },

‎docusaurus/src/css/custom.css

+28
Original file line numberDiff line numberDiff line change
@@ -308,3 +308,31 @@ p.MarkpromptBranding {
308308
div.MarkpromptContentDialog {
309309
top: 90px !important;
310310
}
311+
312+
div.MarkpromptMessageAvatarContainer {
313+
height: 48px;
314+
width: 48px;
315+
}
316+
317+
img.MarkpromptMessageAvatarImage {
318+
height: 48px;
319+
width: 48px;
320+
}
321+
322+
/* */
323+
324+
html[data-theme="dark"] .MarkpromptSearchView .MarkpromptPromptWrapper {
325+
background-color: rgb(68, 73, 80) !important;
326+
}
327+
328+
html[data-theme="dark"] .MarkpromptChatViewNavigation {
329+
background-color: rgb(68, 73, 80) !important;
330+
}
331+
332+
html[data-theme="dark"] .MarkpromptForm {
333+
background-color: rgb(0,0,0) !important;
334+
}
335+
336+
.MarkpromptContentDialog[data-variant="sheet"] {
337+
z-index: 10000 !important; /* Ensure the dialog is on top of everything */
338+
}
Loading
230 KB
Loading

0 commit comments

Comments
 (0)
Please sign in to comment.