Skip to content

Commit

Permalink
Merge branch 'main' into rohan/layered-dropdown-menu
Browse files Browse the repository at this point in the history
  • Loading branch information
r100-stack authored Nov 19, 2024
2 parents acab7f6 + fd0bfe1 commit 3568640
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/red-singers-juggle.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@itwin/itwinui-css': patch
---

`input` and `textarea` inside `.iui-input-flex-container` now properly get `cursor: not-allowed` when disabled.
5 changes: 5 additions & 0 deletions .changeset/shiny-glasses-look.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@itwin/itwinui-react': patch
---

`InputWithDecorations.Input` now properly gets `cursor: not-allowed` when disabled.
2 changes: 1 addition & 1 deletion apps/website/src/components/FeedbackLink.astro
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ type Props = { page: string } & astroHTML.JSX.AnchorHTMLAttributes;
let { page, ...rest } = Astro.props;
const repoUrl = 'https://github.com/iTwin/iTwinUI';
const githubFeedbackUrl = `${repoUrl}/discussions/new?category=documentation&title=Feedback%20on%20%60${page}%60&body=Replace%20this%20text%20with%20your%20feedback%20on%20the%20%60${page}%60%20page.`;
const githubFeedbackUrl = `${repoUrl}/discussions/new?category=feedback&title=Feedback%20on%20%60${page}%60&body=Replace%20this%20text%20with%20your%20feedback%20on%20the%20%60${page}%60%20page.`;
---

<a href={githubFeedbackUrl} {...rest}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,7 @@

&:disabled {
color: var(--iui-color-text-disabled);
cursor: not-allowed;
}
}

Expand Down

0 comments on commit 3568640

Please sign in to comment.