Fix #24: Provider-Bereich kompakter – Spacing und Padding an Pfade-Bereich angepasst
- VBox-Spacing in Provider-Block von 2 auf 4 Pixels erhöht (wie im Pfade-Bereich) - Padding in der Provider-Box von 6px auf 8px erhöht (wie im createCardContainer) - Abstände zwischen Basis-URL, Modell und API-Key sind nun einheitlich mit dem Pfade-Bereich Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
This commit is contained in:
+3
-2
@@ -1646,9 +1646,10 @@ public final class GuiConfigurationEditorWorkspace {
|
||||
private VBox createProviderBlock(String displayName, AiProviderFamily family) {
|
||||
String ns = "ai.provider." + family.getIdentifier() + ".";
|
||||
|
||||
VBox block = new VBox(2);
|
||||
// Abstände entsprechen dem Pfade-Bereich: VBox-Spacing 4, Padding 8px
|
||||
VBox block = new VBox(4);
|
||||
block.setStyle(
|
||||
"-fx-padding: 6px; -fx-border-color: #c8c8c8; -fx-border-radius: 6px;"
|
||||
"-fx-padding: 8px; -fx-border-color: #c8c8c8; -fx-border-radius: 6px;"
|
||||
+ " -fx-background-radius: 6px; -fx-background-color: #f9f9f9;");
|
||||
|
||||
Label title = new Label(displayName);
|
||||
|
||||
Reference in New Issue
Block a user