diff --git a/src/components/LayoutSidebar.tsx b/src/components/LayoutSidebar.tsx
index 27d8c2cd8..6e80ffd52 100644
--- a/src/components/LayoutSidebar.tsx
+++ b/src/components/LayoutSidebar.tsx
@@ -125,7 +125,7 @@ export function LayoutSidebar({
return (
@@ -154,7 +154,7 @@ export function LayoutSidebar({
{/* Fade gradient at bottom to indicate scrollable content */}
-
+
{isSidebarCollapsed && (
@@ -206,7 +206,7 @@ export function LayoutSidebar({
setHasManualToggle(true);
setSidebarStateCookie(false);
}}
- className="rounded-md p-2 text-muted-foreground hover:text-foreground hover:bg-secondary/80 dark:hover:bg-secondary/50 transition-colors"
+ className="rounded-md p-2 text-muted-foreground hover:text-foreground hover:bg-sidebar-accent/80 dark:hover:bg-sidebar-accent/50 transition-colors"
aria-label={t("sidebarExpand")}
>
diff --git a/src/components/OrgIdpTable.tsx b/src/components/OrgIdpTable.tsx
index 1fe61b2fc..bdbaafa27 100644
--- a/src/components/OrgIdpTable.tsx
+++ b/src/components/OrgIdpTable.tsx
@@ -187,23 +187,6 @@ export default function IdpTable({ idps, orgId }: Props) {
};
const columns: ExtendedColumnDef
[] = [
- {
- accessorKey: "idpId",
- friendlyName: "ID",
- header: ({ column }) => {
- return (
-
- );
- }
- },
{
accessorKey: "name",
friendlyName: t("name"),
diff --git a/src/components/OrgSelector.tsx b/src/components/OrgSelector.tsx
index fcbc700a2..5f77582f5 100644
--- a/src/components/OrgSelector.tsx
+++ b/src/components/OrgSelector.tsx
@@ -76,8 +76,8 @@ export function OrgSelector({
className={cn(
"cursor-pointer transition-colors",
isCollapsed
- ? "w-full h-16 flex items-center justify-center hover:bg-muted"
- : "w-full px-5 py-4 hover:bg-muted"
+ ? "w-full h-16 flex items-center justify-center hover:bg-sidebar-accent/80 dark:hover:bg-sidebar-accent/50"
+ : "w-full px-5 py-4 hover:bg-sidebar-accent/80 dark:hover:bg-sidebar-accent/50"
)}
>
{isCollapsed ? (
@@ -172,7 +172,7 @@ export function OrgSelector({