Skip to content

Commit 90e515c

Browse files
SuperSelect - fix Showcase rich content functionality & disabled option color (HDS-5545) (#3331)
1 parent d5bb677 commit 90e515c

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

.changeset/stupid-wombats-spend.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
"@hashicorp/design-system-components": patch
3+
---
4+
5+
<!-- START components/form/super-select -->
6+
`SuperSelect` - Fixed color style for disabled option items.
7+
<!-- END -->

packages/components/src/styles/components/form/super-select.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,10 @@ $hds-super-select-item-height: 36px;
198198
background-color: var(--token-color-foreground-action-active);
199199
}
200200
}
201+
202+
&[aria-disabled="true"] {
203+
color: var(--token-form-control-disabled-foreground-color);
204+
}
201205
}
202206

203207
// Option Groups (similar to HTML optgroup)

showcase/app/components/page-components/form/super-select/code-fragments/with-multiple-field-element.gts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,11 @@ const CLUSTER_SIZE_OPTIONS = [
3131
size: 'Small',
3232
description: '2 vCPU | 2 GiB RAM',
3333
price: '$0.04',
34-
disabled: true,
3534
},
3635
{
3736
size: 'Medium',
3837
description: '4 vCPU | 4 GiB RAM',
3938
price: '$0.08',
40-
disabled: true,
4139
},
4240
{ size: 'Large', description: '8 vCPU | 8 GiB RAM', price: '$0.16' },
4341
{

showcase/app/components/page-components/form/super-select/code-fragments/with-single-field-element.gts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,11 @@ const CLUSTER_SIZE_OPTIONS = [
3131
size: 'Small',
3232
description: '2 vCPU | 2 GiB RAM',
3333
price: '$0.04',
34-
disabled: true,
3534
},
3635
{
3736
size: 'Medium',
3837
description: '4 vCPU | 4 GiB RAM',
3938
price: '$0.08',
40-
disabled: true,
4139
},
4240
{ size: 'Large', description: '8 vCPU | 8 GiB RAM', price: '$0.16' },
4341
{

0 commit comments

Comments
 (0)