Skip to content

Commit 1c063d5

Browse files
committed
v5.4.3
1 parent c3e6aee commit 1c063d5

File tree

6 files changed

+21
-4
lines changed

6 files changed

+21
-4
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": "5.4.2",
3+
"version": "5.4.3",
44
"description": "netdata UI kit",
55
"main": "dist/index.js",
66
"module": "dist/es6/index.js",
Lines changed: 4 additions & 0 deletions
Loading
Lines changed: 4 additions & 0 deletions
Loading
Lines changed: 3 additions & 0 deletions
Loading

src/components/icon/iconsList.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -326,6 +326,8 @@ import reload from "./assets/reload.svg"
326326
import removeNode from "./assets/remove_node.svg"
327327
import resize_handler from "./assets/resize_handler.svg"
328328
import rocket from "./assets/rocket.svg"
329+
import rotate_ccw from "./assets/rotate_ccw.svg"
330+
import rotate_cw from "./assets/rotate_cw.svg"
329331
import room from "./assets/room.svg"
330332
import room_home from "./assets/room_home.svg"
331333
import room_new from "./assets/room_new.svg"
@@ -428,6 +430,7 @@ import systemOverviewPress from "./assets/system_overview_press.svg"
428430
import text_add from "./assets/text_add.svg"
429431
import thumb_down from "./assets/thumb_down.svg"
430432
import thumb_up from "./assets/thumb_up.svg"
433+
import thunder from "./assets/thunder.svg"
431434
import tiny_buttons from "./assets/tiny_buttons.svg"
432435
import top from "./assets/top.svg"
433436
import training from "./assets/training.svg"
@@ -795,6 +798,8 @@ export const iconsList = {
795798
removeNode,
796799
resize_handler,
797800
rocket,
801+
rotate_ccw,
802+
rotate_cw,
798803
room_home,
799804
room_new,
800805
room_overview,
@@ -897,6 +902,7 @@ export const iconsList = {
897902
text_add,
898903
thumb_down,
899904
thumb_up,
905+
thunder,
900906
tiny_buttons,
901907
top,
902908
training,

src/mixins/webkitVisibleScrollbar.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ export default css`
1111
1212
&::-webkit-scrollbar-track {
1313
background-color: ${getRgbColor("scrollBarTrack", 1)};
14-
border:1px solid ${getRgbColor("scrollBarBorder", 0.4)};
14+
border: 1px solid ${getRgbColor("scrollBarBorder", 0.4)};
1515
border-radius: ${getSizeBy(1)};
1616
}
1717
&::-webkit-scrollbar-thumb {
1818
width: ${getSizeBy(0.5)};
19-
border:1px solid ${getRgbColor("scrollBarBorder", 1)};
19+
border: 1px solid ${getRgbColor("scrollBarBorder", 1)};
2020
border-radius: ${getSizeBy(1)};
21-
background-color: ${getRgbColor("scrollBarThumb", 1)}
21+
background-color: ${getRgbColor("scrollBarThumb", 1)};
2222
}
2323
&::-webkit-scrollbar-thumb:hover {
2424
background-color: ${getRgbColor("scrollBarThumbHover", 1)};

0 commit comments

Comments
 (0)