From 6cbe0b6c0ed6b29d143790f21556b4b46268f4ff Mon Sep 17 00:00:00 2001 From: rhenck <richard.henck@iqb.hu-berlin.de> Date: Fri, 2 Dec 2022 21:24:37 +0100 Subject: [PATCH] Change DropList default background color to #ededed --- projects/common/models/elements/input-elements/drop-list.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/common/models/elements/input-elements/drop-list.ts b/projects/common/models/elements/input-elements/drop-list.ts index a1f5a5347..ed39996e0 100644 --- a/projects/common/models/elements/input-elements/drop-list.ts +++ b/projects/common/models/elements/input-elements/drop-list.ts @@ -44,7 +44,7 @@ export class DropListElement extends InputElement { UIElement.initPositionProps({ useMinHeight: true, ...element.position as Partial<PositionProperties> }) : undefined; this.styling = UIElement.initStylingProps({ - backgroundColor: '#f4f4f2', + backgroundColor: '#ededed', itemBackgroundColor: '#c9e0e0', ...element.styling }); -- GitLab