+
diff --git a/platform/app/src/routes/WorkList/StudyListSettingsPopover.tsx b/platform/app/src/routes/WorkList/StudyListSettingsPopover.tsx
index 0bc367aa546..0aded13cb02 100644
--- a/platform/app/src/routes/WorkList/StudyListSettingsPopover.tsx
+++ b/platform/app/src/routes/WorkList/StudyListSettingsPopover.tsx
@@ -107,7 +107,7 @@ export function StudyListSettingsPopover() {
>
diff --git a/platform/app/src/routes/WorkList/WorkList.tsx b/platform/app/src/routes/WorkList/WorkList.tsx
index 88c6509f7eb..0f3e4380116 100644
--- a/platform/app/src/routes/WorkList/WorkList.tsx
+++ b/platform/app/src/routes/WorkList/WorkList.tsx
@@ -107,7 +107,7 @@ export default function WorkList({
isLoading={showStudyListLoading}
loadingComponent={
LoadingIndicatorProgress ? (
-
+
) : (
)
diff --git a/platform/ui-next/src/assets/styles.css b/platform/ui-next/src/assets/styles.css
index 3e339f9bb35..a0199ea89d5 100644
--- a/platform/ui-next/src/assets/styles.css
+++ b/platform/ui-next/src/assets/styles.css
@@ -1,6 +1,6 @@
/* CUSTOM OHIF SCROLLBAR */
.ohif-scrollbar {
- scrollbar-color: #173239 transparent;
+ scrollbar-color: hsl(var(--neutral) / 0.5) transparent;
overflow-y: auto;
}
@@ -27,12 +27,10 @@
.ohif-scrollbar::-webkit-scrollbar-thumb {
@apply rounded;
@apply bg-popover;
- background-color: #041c4a;
}
.ohif-scrollbar::-webkit-scrollbar-thumb:window-inactive {
@apply bg-popover;
- background-color: #041c4a;
}
/* INVISIBLE SCROLLBAR */
diff --git a/platform/ui-next/src/components/DateRange/DateRange.tsx b/platform/ui-next/src/components/DateRange/DateRange.tsx
index 90ba7034120..7bd18e40314 100644
--- a/platform/ui-next/src/components/DateRange/DateRange.tsx
+++ b/platform/ui-next/src/components/DateRange/DateRange.tsx
@@ -94,7 +94,7 @@ export function DatePickerWithRange({
value={start}
onChange={e => handleInputChange(e, 'start')}
className={cn(
- 'border-inputfield-main focus:border-inputfield-focus hover:text-foreground placeholder:text-muted-foreground h-7 w-full justify-start rounded border bg-background pl-1.5 pr-0.5 py-1 text-left text-base font-normal hover:bg-background'
+ 'border-input focus:border-ring hover:text-foreground placeholder:text-muted-foreground h-7 w-full justify-start rounded border bg-background pl-1.5 pr-0.5 py-1 text-left text-base font-normal hover:bg-background'
)}
data-cy="input-date-range-start"
/>
@@ -135,7 +135,7 @@ export function DatePickerWithRange({
value={end}
onChange={e => handleInputChange(e, 'end')}
className={cn(
- 'border-inputfield-main focus:border-inputfield-focus hover:text-foreground placeholder:text-muted-foreground h-7 w-full justify-start rounded border bg-background pl-1.5 pr-0.5 py-1 text-left text-base font-normal hover:bg-background'
+ 'border-input focus:border-ring hover:text-foreground placeholder:text-muted-foreground h-7 w-full justify-start rounded border bg-background pl-1.5 pr-0.5 py-1 text-left text-base font-normal hover:bg-background'
)}
data-cy="input-date-range-end"
/>
diff --git a/platform/ui-next/src/components/Icons/Sources/Alert.tsx b/platform/ui-next/src/components/Icons/Sources/Alert.tsx
index 50b544327a6..edbe5f0e36c 100644
--- a/platform/ui-next/src/components/Icons/Sources/Alert.tsx
+++ b/platform/ui-next/src/components/Icons/Sources/Alert.tsx
@@ -15,7 +15,7 @@ export const Alert = (props: IconProps) => (
>
(
{...props}
>
(
(
(
>
);
@@ -115,198 +115,198 @@ export const HelperCombineIntersect = (props: IconProps) => (
>
);
@@ -321,78 +321,78 @@ export const HelperCombineMerge = (props: IconProps) => (
>
);
diff --git a/platform/ui-next/src/components/Icons/Sources/IconTransferring.tsx b/platform/ui-next/src/components/Icons/Sources/IconTransferring.tsx
index da551689cd2..60f3da98027 100644
--- a/platform/ui-next/src/components/Icons/Sources/IconTransferring.tsx
+++ b/platform/ui-next/src/components/Icons/Sources/IconTransferring.tsx
@@ -10,7 +10,7 @@ export const IconTransferring = (props: IconProps) => (
{...props}
>
(
(
(
(
(
(
(
(
(
(
>
(
>
(
x2="27.295082"
y2="27.295082"
id="Path"
- stroke="#3A3F99"
+ stroke="hsl(var(--input))"
>
diff --git a/platform/ui-next/src/components/Icons/Sources/Layout.tsx b/platform/ui-next/src/components/Icons/Sources/Layout.tsx
index 958d26f8390..43ea5d7b4fe 100644
--- a/platform/ui-next/src/components/Icons/Sources/Layout.tsx
+++ b/platform/ui-next/src/components/Icons/Sources/Layout.tsx
@@ -38,7 +38,7 @@ export const LayoutAdvanced3DFourUp = (props: IconProps) => (
(
@@ -121,11 +121,11 @@ export const LayoutAdvanced3DOnly = (props: IconProps) => (
(
diff --git a/platform/ui-next/src/components/Icons/Sources/LoadingSpinner.tsx b/platform/ui-next/src/components/Icons/Sources/LoadingSpinner.tsx
index 45b8fd22977..7a69e58ea10 100644
--- a/platform/ui-next/src/components/Icons/Sources/LoadingSpinner.tsx
+++ b/platform/ui-next/src/components/Icons/Sources/LoadingSpinner.tsx
@@ -1,11 +1,11 @@
import React from 'react';
import type { IconProps } from '../types';
-export const LoadingSpinner = (props: IconProps) => (
+export const LoadingSpinner = ({ className, ...props }: IconProps) => (
diff --git a/platform/ui-next/src/components/Icons/Sources/NotificationInfo.tsx b/platform/ui-next/src/components/Icons/Sources/NotificationInfo.tsx
index 8bf8dc11047..74fb8bc783f 100644
--- a/platform/ui-next/src/components/Icons/Sources/NotificationInfo.tsx
+++ b/platform/ui-next/src/components/Icons/Sources/NotificationInfo.tsx
@@ -14,7 +14,7 @@ export const NotificationInfo = (props: IconProps) => (
fillRule="evenodd"
>
(
strokeLinejoin="round"
>
diff --git a/platform/ui-next/src/components/Icons/Sources/OHIFLogoHorizontal.tsx b/platform/ui-next/src/components/Icons/Sources/OHIFLogoHorizontal.tsx
index e530c86f040..cdf0be62d08 100644
--- a/platform/ui-next/src/components/Icons/Sources/OHIFLogoHorizontal.tsx
+++ b/platform/ui-next/src/components/Icons/Sources/OHIFLogoHorizontal.tsx
@@ -11,127 +11,127 @@ export const OHIFLogoHorizontal = (props: IconProps) => (
>
);
diff --git a/platform/ui-next/src/components/Icons/Sources/PanelRight.tsx b/platform/ui-next/src/components/Icons/Sources/PanelRight.tsx
index ba154aba070..a1d2ad5fdcd 100644
--- a/platform/ui-next/src/components/Icons/Sources/PanelRight.tsx
+++ b/platform/ui-next/src/components/Icons/Sources/PanelRight.tsx
@@ -17,11 +17,11 @@ export const PanelRight = (props: IconProps) => (
height="15"
rx="1.5"
transform="matrix(-1 0 0 1 18 0)"
- stroke="#348CFD"
+ stroke="currentColor"
/>
);
diff --git a/platform/ui-next/src/components/Icons/Sources/Plus.tsx b/platform/ui-next/src/components/Icons/Sources/Plus.tsx
index 60f2cd7b8e3..928c5df78d3 100644
--- a/platform/ui-next/src/components/Icons/Sources/Plus.tsx
+++ b/platform/ui-next/src/components/Icons/Sources/Plus.tsx
@@ -15,7 +15,7 @@ export const Plus = (props: IconProps) => (
>
(
(
>
diff --git a/platform/ui-next/src/components/Icons/Sources/Show.tsx b/platform/ui-next/src/components/Icons/Sources/Show.tsx
index e0686dedecf..f18cd3d8551 100644
--- a/platform/ui-next/src/components/Icons/Sources/Show.tsx
+++ b/platform/ui-next/src/components/Icons/Sources/Show.tsx
@@ -25,28 +25,28 @@ export const Show = (props: IconProps) => (
@@ -56,7 +56,7 @@ export const Show = (props: IconProps) => (
x2="5.29347826"
y2="18.9130435"
id="Path"
- stroke="#348CFD"
+ stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
>
diff --git a/platform/ui-next/src/components/Icons/Sources/SocialGithub.tsx b/platform/ui-next/src/components/Icons/Sources/SocialGithub.tsx
index 58d52e64570..ec59acd6374 100644
--- a/platform/ui-next/src/components/Icons/Sources/SocialGithub.tsx
+++ b/platform/ui-next/src/components/Icons/Sources/SocialGithub.tsx
@@ -25,7 +25,7 @@ export const SocialGithub = (props: IconProps) => (
(
>
(
width="15"
height="15"
rx="7.5"
- fill="#0D0E24"
- stroke="#7BB2CE"
+ fill="transparent"
+ stroke="currentColor"
/>
(
>
(
(
@@ -1825,7 +1825,7 @@ export const ToolLayoutDefault = (props: IconProps) => (
diff --git a/platform/ui-next/src/components/Icons/Sources/Upload.tsx b/platform/ui-next/src/components/Icons/Sources/Upload.tsx
index 52732b66cc7..3a6f86f540d 100644
--- a/platform/ui-next/src/components/Icons/Sources/Upload.tsx
+++ b/platform/ui-next/src/components/Icons/Sources/Upload.tsx
@@ -10,7 +10,7 @@ export const Upload = (props: IconProps) => (
>
(
handleSelection(index)}
onMouseEnter={() => setHoveredIndex(index)}
diff --git a/platform/ui-next/src/components/Onboarding/Onboarding.css b/platform/ui-next/src/components/Onboarding/Onboarding.css
index 77dbaf238de..3cf51989ffd 100644
--- a/platform/ui-next/src/components/Onboarding/Onboarding.css
+++ b/platform/ui-next/src/components/Onboarding/Onboarding.css
@@ -23,11 +23,11 @@
}
.shepherd-button {
- @apply !text-foreground !inline-flex !h-[36px] !min-w-[62px] !flex-row !items-center !justify-center !gap-[5px] !whitespace-nowrap !rounded !bg-[#348cfd] !px-[10px] !text-center !font-sans !text-[14px] !leading-[1.2] !outline-none !transition !duration-300 !ease-in-out focus:!outline-none;
+ @apply !text-foreground !inline-flex !h-[36px] !min-w-[62px] !flex-row !items-center !justify-center !gap-[5px] !whitespace-nowrap !rounded !bg-primary !px-[10px] !text-center !font-sans !text-[14px] !leading-[1.2] !outline-none !transition !duration-300 !ease-in-out focus:!outline-none;
}
.shepherd-button.shepherd-button-secondary {
- @apply !bg-transparent !text-[#348cfd];
+ @apply !bg-transparent !text-primary;
}
.shepherd-arrow::before {
diff --git a/platform/ui-next/src/components/ProgressLoadingBar/ProgressLoadingBar.css b/platform/ui-next/src/components/ProgressLoadingBar/ProgressLoadingBar.css
index f9addbe9e91..24051571be4 100644
--- a/platform/ui-next/src/components/ProgressLoadingBar/ProgressLoadingBar.css
+++ b/platform/ui-next/src/components/ProgressLoadingBar/ProgressLoadingBar.css
@@ -1,5 +1,5 @@
.loading {
- background-color: #091731;
+ background-color: hsl(var(--muted));
height: 8px;
border-radius: 4px;
overflow: hidden;
diff --git a/platform/ui-next/src/components/Sonner/Sonner.tsx b/platform/ui-next/src/components/Sonner/Sonner.tsx
index 368e8edea03..af380d555f2 100644
--- a/platform/ui-next/src/components/Sonner/Sonner.tsx
+++ b/platform/ui-next/src/components/Sonner/Sonner.tsx
@@ -8,12 +8,12 @@ const Toaster = ({ ...props }: ToasterProps) => {
return (
}
+ loadingIcon={}
icons={{
warning: ,
info: ,
success: ,
- error: ,
+ error: ,
}}
theme="dark"
richColors="true"
diff --git a/platform/ui-next/src/components/StudyList/components/PreviewToggleButton.tsx b/platform/ui-next/src/components/StudyList/components/PreviewToggleButton.tsx
index 709688f3475..64bcf76a72f 100644
--- a/platform/ui-next/src/components/StudyList/components/PreviewToggleButton.tsx
+++ b/platform/ui-next/src/components/StudyList/components/PreviewToggleButton.tsx
@@ -30,7 +30,7 @@ function PreviewToggleButton({
>
);