diff --git a/frontend/src/_styles/onboarding.scss b/frontend/src/_styles/onboarding.scss
index 8913323d5b..336fdc0d60 100644
--- a/frontend/src/_styles/onboarding.scss
+++ b/frontend/src/_styles/onboarding.scss
@@ -1154,7 +1154,7 @@
.tj-text-input,
.onboard-input {
- color: #fff;
+ color: #fff ;
border-color: #787F85;
::placeholder {
@@ -1162,7 +1162,7 @@
}
p {
- color: #697177;
+ color: white !important;
}
&:hover {
@@ -1400,6 +1400,14 @@
.active-onboarding-tab {
color: #111827 !important;
}
+.theme-dark{
+ .active-onboarding-tab{
+ color: $color-dark-slate-12 !important;
+ img{
+ filter: brightness(0) invert(1);
+ }
+ }
+}
.navigation-wrap {
display: flex;
diff --git a/frontend/src/_styles/popover.scss b/frontend/src/_styles/popover.scss
index 1fb4865892..9df3e1dabb 100644
--- a/frontend/src/_styles/popover.scss
+++ b/frontend/src/_styles/popover.scss
@@ -9,7 +9,7 @@
animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
will-change: transform, opacity;
box-shadow: 0px 12px 16px -4px rgba(16, 24, 40, 0.08), 0px 4px 6px -2px rgba(16, 24, 40, 0.03);
- border-radius: 8px;
+ border-radius: 0 8px 8px 0;
overflow: auto;
}
@@ -101,4 +101,8 @@
.card-body{
color: #C0C8CC !important;
}
-}
\ No newline at end of file
+ &::-webkit-scrollbar {
+ width: 0;
+ background: transparent;
+ }
+}
diff --git a/frontend/src/_styles/theme.scss b/frontend/src/_styles/theme.scss
index c9cf4ca9d2..a8053cc22f 100644
--- a/frontend/src/_styles/theme.scss
+++ b/frontend/src/_styles/theme.scss
@@ -7263,7 +7263,8 @@ tbody {
}
.modal-backdrop {
- background-color: hsla(0, 0%, 0%, 0.439);
+ // background-color: hsla(0, 0%, 0%, 0.439);
+ opacity: 0.5;
}
.ds-delete-btn {
@@ -7315,4 +7316,13 @@ tbody {
}
}
}
-}
\ No newline at end of file
+ .icon-tabler-x{
+ stroke: white ;
+ }
+}
+.img-invert{
+ img{
+ filter: invert(1);
+ }
+
+}
diff --git a/frontend/src/_ui/JSONTreeViewer/JSONNode.jsx b/frontend/src/_ui/JSONTreeViewer/JSONNode.jsx
index ed72ef1b15..0432cc5853 100644
--- a/frontend/src/_ui/JSONTreeViewer/JSONNode.jsx
+++ b/frontend/src/_ui/JSONTreeViewer/JSONNode.jsx
@@ -335,7 +335,9 @@ export const JSONNode = ({ data, ...restProps }) => {
-
+
diff --git a/frontend/src/_ui/LeftSidebar/Header.jsx b/frontend/src/_ui/LeftSidebar/Header.jsx
index eec04764fa..15adcc347b 100644
--- a/frontend/src/_ui/LeftSidebar/Header.jsx
+++ b/frontend/src/_ui/LeftSidebar/Header.jsx
@@ -17,7 +17,7 @@ const PanelHeader = ({ children, settings, title }) => {
);
};
-const SearchContainer = ({ onChange, placeholder, placeholderIcon, callBack = null }) => {
+const SearchContainer = ({ onChange, placeholder, placeholderIcon, callBack = null, darkMode }) => {
return (
);
diff --git a/frontend/src/_ui/Search/Search.jsx b/frontend/src/_ui/Search/Search.jsx
index 0eda7323fb..6211c0c707 100644
--- a/frontend/src/_ui/Search/Search.jsx
+++ b/frontend/src/_ui/Search/Search.jsx
@@ -2,7 +2,7 @@ import React from 'react';
import { useTranslation } from 'react-i18next';
export const SearchBox = ({ onChange, ...restProps }) => {
- const { callback, placeholder, placeholderIcon = null } = restProps;
+ const { callback, placeholder, placeholderIcon = null, customClass = '' } = restProps;
const [searchText, setSearchText] = React.useState('');
const { t } = useTranslation();
@@ -29,7 +29,7 @@ export const SearchBox = ({ onChange, ...restProps }) => {
}, [searchText]);
return (
-