diff --git a/apps/web/core/components/issues/issue-layouts/roots/project-layout-root.tsx b/apps/web/core/components/issues/issue-layouts/roots/project-layout-root.tsx index 96c9ee3dfbf..79d4324f721 100644 --- a/apps/web/core/components/issues/issue-layouts/roots/project-layout-root.tsx +++ b/apps/web/core/components/issues/issue-layouts/roots/project-layout-root.tsx @@ -80,7 +80,7 @@ export const ProjectLayoutRoot = observer(function ProjectLayoutRoot() { }} /> )} -
+
{/* mutation loader */} {issues?.getIssueLoader() === "mutation" && (
diff --git a/apps/web/core/components/rich-filters/filters-row.tsx b/apps/web/core/components/rich-filters/filters-row.tsx index 60d568b5e53..30316890f68 100644 --- a/apps/web/core/components/rich-filters/filters-row.tsx +++ b/apps/web/core/components/rich-filters/filters-row.tsx @@ -119,7 +119,7 @@ export const FiltersRow = observer(function FiltersRow +
{leftContent}
+
{mainContent}
); diff --git a/packages/propel/src/button/helper.tsx b/packages/propel/src/button/helper.tsx index 928dd4dc6c0..71a91aa0f7e 100644 --- a/packages/propel/src/button/helper.tsx +++ b/packages/propel/src/button/helper.tsx @@ -7,7 +7,7 @@ export const buttonVariants = cva( variants: { variant: { primary: - "bg-accent-primary hover:bg-accent-primary-hover active:bg-accent-primary-active disabled:bg-layer-disabled text-on-color disabled:text-disabled", + "bg-accent-primary hover:bg-accent-primary-hover active:bg-accent-primary-active disabled:bg-layer-disabled text-on-color disabled:text-on-color-disabled", "error-fill": "bg-danger-primary hover:bg-danger-primary-hover active:bg-danger-primary-active disabled:bg-layer-disabled text-on-color disabled:text-disabled", "error-outline": diff --git a/packages/propel/src/icon-button/helper.tsx b/packages/propel/src/icon-button/helper.tsx index ddae1dd45f8..e012e1f2566 100644 --- a/packages/propel/src/icon-button/helper.tsx +++ b/packages/propel/src/icon-button/helper.tsx @@ -8,7 +8,7 @@ export const iconButtonVariants = cva( variants: { variant: { primary: - "bg-accent-primary hover:bg-accent-primary-hover active:bg-accent-primary-active focus:bg-accent-primary-active disabled:bg-layer-disabled text-on-color disabled:text-disabled", + "bg-accent-primary hover:bg-accent-primary-hover active:bg-accent-primary-active focus:bg-accent-primary-active disabled:bg-layer-disabled text-on-color disabled:text-on-color-disabled", "error-fill": "bg-danger-primary hover:bg-danger-primary-hover active:bg-danger-primary-active focus:bg-danger-primary-active disabled:bg-layer-disabled text-on-color disabled:text-disabled", "error-outline": diff --git a/packages/ui/src/button/helper.tsx b/packages/ui/src/button/helper.tsx index 124ffbcf262..af923cdf532 100644 --- a/packages/ui/src/button/helper.tsx +++ b/packages/ui/src/button/helper.tsx @@ -41,7 +41,7 @@ export const buttonStyling: IButtonStyling = { default: `text-on-color bg-accent-primary`, hover: `hover:bg-accent-primary/80`, pressed: `focus:text-custom-brand-40 focus:bg-accent-primary/80`, - disabled: `cursor-not-allowed !bg-layer-1 !text-placeholder`, + disabled: `cursor-not-allowed !bg-layer-1 !text-on-color-disabled`, }, "accent-primary": { default: `bg-accent-primary/20 text-accent-primary`,