diff --git a/platform/docs/src/pages/colors-and-type.tsx b/platform/docs/src/pages/colors-and-type.tsx
index 089d30f57..9d7078fc0 100644
--- a/platform/docs/src/pages/colors-and-type.tsx
+++ b/platform/docs/src/pages/colors-and-type.tsx
@@ -131,7 +131,7 @@ export default function ComponentShowcase() {
title="Colors and Typography"
description="Colors and Typography"
>
-
+
{/* Navigation cards */}
@@ -396,7 +396,7 @@ function ShowcaseRow({ title, description, children, code }: ShowcaseRowProps) {
{showCode && (
-
+
{code}
)}
@@ -425,7 +425,7 @@ function ShowcaseRow({ title, description, children, code }: ShowcaseRowProps) {
//
//
{children}
// {showCode && (
-//
+//
// {code}
//
// )}
diff --git a/platform/docs/src/pages/components-list.tsx b/platform/docs/src/pages/components-list.tsx
index 2ec48c375..08e88a2fa 100644
--- a/platform/docs/src/pages/components-list.tsx
+++ b/platform/docs/src/pages/components-list.tsx
@@ -50,7 +50,7 @@ export default function ComponentsList() {
return (
-
+
{/* Navigation cards */}
diff --git a/platform/docs/src/pages/components.tsx b/platform/docs/src/pages/components.tsx
index ae2267035..b49931da0 100644
--- a/platform/docs/src/pages/components.tsx
+++ b/platform/docs/src/pages/components.tsx
@@ -131,7 +131,7 @@ export default function ComponentShowcase() {
title="OHIF Viewer Design System"
description="OHIF Viewer Design System"
>
-
+
//
{children}
// {showCode && (
-//
+//
// {code}
//
// )}
diff --git a/platform/docs/src/pages/components/AllinOneMenuShowcase.tsx b/platform/docs/src/pages/components/AllinOneMenuShowcase.tsx
index e7939c323..895d721a1 100644
--- a/platform/docs/src/pages/components/AllinOneMenuShowcase.tsx
+++ b/platform/docs/src/pages/components/AllinOneMenuShowcase.tsx
@@ -58,7 +58,7 @@ export default function AllinOneMenuShowcase() {
description="A structured menu that consolidates controls and actions."
code={`…`}
>
-
+
{showCode && (
-
+
{code}
)}
diff --git a/platform/docs/src/pages/patterns.tsx b/platform/docs/src/pages/patterns.tsx
index 12d5f2836..e50d20b52 100644
--- a/platform/docs/src/pages/patterns.tsx
+++ b/platform/docs/src/pages/patterns.tsx
@@ -26,7 +26,7 @@ export default function ComponentShowcase() {
title="Patterns"
description="Patterns and example layouts"
>
-
+
{/* Navigation cards */}
@@ -172,7 +172,7 @@ function ShowcaseRow({ title, description, children, code }: ShowcaseRowProps) {
{showCode && (
-
+
{code}
)}
@@ -201,7 +201,7 @@ function ShowcaseRow({ title, description, children, code }: ShowcaseRowProps) {
//
//
{children}
// {showCode && (
-//
+//
// {code}
//
// )}
diff --git a/platform/docs/src/pages/patterns/patterns-measurements.tsx b/platform/docs/src/pages/patterns/patterns-measurements.tsx
index 1daf39a6b..6347b7891 100644
--- a/platform/docs/src/pages/patterns/patterns-measurements.tsx
+++ b/platform/docs/src/pages/patterns/patterns-measurements.tsx
@@ -49,7 +49,7 @@ export default function Measurements() {
return (
{() => (
-
+
{/* Simulated Panel List for "Segmentation" */}
diff --git a/platform/docs/src/pages/patterns/patterns-segmentation.tsx b/platform/docs/src/pages/patterns/patterns-segmentation.tsx
index ee7a1c95b..56dd883cb 100644
--- a/platform/docs/src/pages/patterns/patterns-segmentation.tsx
+++ b/platform/docs/src/pages/patterns/patterns-segmentation.tsx
@@ -241,7 +241,7 @@ export default function SegmentationPanel() {
};
return (
-
+
{() => (
-
+
(
{/* Number Box */}
{number !== null && (
diff --git a/platform/ui-next/src/components/DateRange/DateRange.tsx b/platform/ui-next/src/components/DateRange/DateRange.tsx
index f07547ed3..22797fedf 100644
--- a/platform/ui-next/src/components/DateRange/DateRange.tsx
+++ b/platform/ui-next/src/components/DateRange/DateRange.tsx
@@ -92,7 +92,7 @@ export function DatePickerWithRange({
value={start}
onChange={e => handleInputChange(e, 'start')}
className={cn(
- 'border-inputfield-main focus:border-inputfield-focus hover:text-foreground h-[32px] w-full justify-start rounded border bg-black py-[6.5px] pl-[6.5px] pr-[6.5px] text-left text-base font-normal hover:bg-black',
+ 'border-inputfield-main focus:border-inputfield-focus hover:text-foreground h-[32px] w-full justify-start rounded border bg-background py-[6.5px] pl-[6.5px] pr-[6.5px] text-left text-base font-normal hover:bg-background',
!start && 'text-muted-foreground'
)}
data-cy="input-date-range-start"
@@ -129,7 +129,7 @@ export function DatePickerWithRange({
value={end}
onChange={e => handleInputChange(e, 'end')}
className={cn(
- 'border-inputfield-main focus:border-inputfield-focus hover:text-foreground h-full w-full justify-start rounded border bg-black py-[6.5px] pl-[6.5px] pr-[6.5px] text-left text-base font-normal hover:bg-black',
+ 'border-inputfield-main focus:border-inputfield-focus hover:text-foreground h-full w-full justify-start rounded border bg-background py-[6.5px] pl-[6.5px] pr-[6.5px] text-left text-base font-normal hover:bg-background',
!end && 'text-muted-foreground'
)}
data-cy="input-date-range-end"
diff --git a/platform/ui-next/src/components/Dialog/Dialog.tsx b/platform/ui-next/src/components/Dialog/Dialog.tsx
index 58861d808..a76ab566f 100644
--- a/platform/ui-next/src/components/Dialog/Dialog.tsx
+++ b/platform/ui-next/src/components/Dialog/Dialog.tsx
@@ -54,7 +54,7 @@ const DialogOverlay = React.forwardRef<
(
-
+
);
const HelpText = ({ children, className }: { children: React.ReactNode; className?: string }) => (
diff --git a/platform/ui-next/src/components/NavBar/NavBar.tsx b/platform/ui-next/src/components/NavBar/NavBar.tsx
index f6fd0d67c..8d12b496d 100644
--- a/platform/ui-next/src/components/NavBar/NavBar.tsx
+++ b/platform/ui-next/src/components/NavBar/NavBar.tsx
@@ -17,7 +17,7 @@ const NavBar = ({
return (
diff --git a/platform/ui-next/src/components/OHIFModals/ImageModal.tsx b/platform/ui-next/src/components/OHIFModals/ImageModal.tsx
index e4e56d232..9b04c8832 100644
--- a/platform/ui-next/src/components/OHIFModals/ImageModal.tsx
+++ b/platform/ui-next/src/components/OHIFModals/ImageModal.tsx
@@ -41,7 +41,7 @@ function ImageVisual({ children, className }: ImageVisualProps) {
return (
>
diff --git a/platform/ui-next/src/components/StudyBrowserSort/StudyBrowserSort.tsx b/platform/ui-next/src/components/StudyBrowserSort/StudyBrowserSort.tsx
index ad41df99f..6f862c4fa 100644
--- a/platform/ui-next/src/components/StudyBrowserSort/StudyBrowserSort.tsx
+++ b/platform/ui-next/src/components/StudyBrowserSort/StudyBrowserSort.tsx
@@ -55,13 +55,13 @@ export function StudyBrowserSort({ servicesManager }: withAppTypes) {
-
+
{selectedSort.label}
{selectedSort.label}
-
+
{sortFunctions.map(sort => (