From bf1dae19f2954f175a1812dd40928af93e9f9e4e Mon Sep 17 00:00:00 2001 From: John Kapantzakis Date: Mon, 26 Feb 2024 21:30:17 +0200 Subject: [PATCH 1/3] Update dynamic config icon --- src/components/icon/assets/dynamic_config.svg | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/components/icon/assets/dynamic_config.svg b/src/components/icon/assets/dynamic_config.svg index f6bc47299..54d10e758 100644 --- a/src/components/icon/assets/dynamic_config.svg +++ b/src/components/icon/assets/dynamic_config.svg @@ -1,4 +1,3 @@ - - + From c2d6c36601eea85265b0da09117574dac149ca06 Mon Sep 17 00:00:00 2001 From: John Kapantzakis Date: Mon, 26 Feb 2024 22:30:50 +0200 Subject: [PATCH 2/3] Add hover style on selecti option --- src/components/select/index.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/components/select/index.js b/src/components/select/index.js index ccc7e0809..72fe4f029 100644 --- a/src/components/select/index.js +++ b/src/components/select/index.js @@ -150,6 +150,10 @@ const makeCustomStyles = (theme, { minWidth, size, ...providedStyles } = {}) => option: (styles, state) => ({ ...styles, color: getOptionColor(theme, state), + ":hover": { + backgroundColor: theme.colors.dropdown, + color: theme.colors.bright, + }, ...(size === "tiny" ? { fontSize: "12px", minHeight: 28, padding: "4px 8px" } : {}), }), placeholder: styles => ({ From d41f84f3993e6516af3fce9a64c1b69334b3b1e7 Mon Sep 17 00:00:00 2001 From: John Kapantzakis Date: Mon, 26 Feb 2024 22:32:22 +0200 Subject: [PATCH 3/3] v4.3.13 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index a5ba721b4..268428481 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@netdata/netdata-ui", - "version": "4.3.12", + "version": "4.3.13", "description": "netdata UI kit", "main": "dist/index.js", "module": "dist/es6/index.js",