Skip to content

Commit 1004720

Browse files
authored
Update dynamic config icon (#513)
* Update dynamic config icon * Add hover style on selecti option * v4.3.13
1 parent 64f63a2 commit 1004720

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@netdata/netdata-ui",
3-
"version": "4.3.12",
3+
"version": "4.3.13",
44
"description": "netdata UI kit",
55
"main": "dist/index.js",
66
"module": "dist/es6/index.js",
Lines changed: 1 addition & 2 deletions
Loading

src/components/select/index.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,10 @@ const makeCustomStyles = (theme, { minWidth, size, ...providedStyles } = {}) =>
150150
option: (styles, state) => ({
151151
...styles,
152152
color: getOptionColor(theme, state),
153+
":hover": {
154+
backgroundColor: theme.colors.dropdown,
155+
color: theme.colors.bright,
156+
},
153157
...(size === "tiny" ? { fontSize: "12px", minHeight: 28, padding: "4px 8px" } : {}),
154158
}),
155159
placeholder: styles => ({

0 commit comments

Comments
 (0)