From 6c1336ae00db8deab9465152b028818758343771 Mon Sep 17 00:00:00 2001 From: Thorsten Sommer Date: Fri, 3 Jul 2026 09:43:24 +0200 Subject: [PATCH] Adjusted border styling and improved color --- app/MindWork AI Studio/Components/AssistantBlock.razor.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/MindWork AI Studio/Components/AssistantBlock.razor.cs b/app/MindWork AI Studio/Components/AssistantBlock.razor.cs index b2e57faf..741fc836 100644 --- a/app/MindWork AI Studio/Components/AssistantBlock.razor.cs +++ b/app/MindWork AI Studio/Components/AssistantBlock.razor.cs @@ -62,11 +62,11 @@ public partial class AssistantBlock : MSGComponentBase where TSetting private string BorderColor => this.HasActiveSession ? this.ColorTheme.GetActivityIndicatorColor(this.SettingsManager) : this.SettingsManager.IsDarkMode switch { - true => this.ColorTheme.GetCurrentPalette(this.SettingsManager).GrayLight, - false => this.ColorTheme.GetCurrentPalette(this.SettingsManager).Primary.Value, + true => this.ColorTheme.GetCurrentPalette(this.SettingsManager).GrayDefault, + false => this.ColorTheme.GetCurrentPalette(this.SettingsManager).GrayDefault, }; - private string BlockStyle => $"border-width: 2px; border-color: {this.BorderColor}; border-radius: 12px; border-style: solid; max-width: 20em;"; + private string BlockStyle => $"border-width: 3px; border-color: {this.BorderColor}; border-radius: 12px; border-style: solid; max-width: 20em;"; private bool IsVisible => this.SettingsManager.IsAssistantVisible(this.Component, assistantName: this.Name, requiredPreviewFeature: this.RequiredPreviewFeature);