Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Adaptive Cards] Clickable adaptive card elements do not have correct pointer/hover state #5130

Open
lauren-mills opened this issue Apr 11, 2024 · 1 comment
Labels
area-accessibility Bot Services Required for internal Azure reporting. Do not delete. Do not change color. bug Indicates an unexpected problem or an unintended behavior. customer-reported Required for internal Azure reporting. Do not delete.

Comments

@lauren-mills
Copy link

lauren-mills commented Apr 11, 2024

Is it an issue related to Adaptive Cards?

Yes, this is an Adaptive Card issue, however it only repro on Web Chat.

Is this an accessibility issue?

Yes

What version of Web Chat are you using?

Latest production

Which distribution are you using Web Chat from?

Unrelated

Which hosting environment does this issue primarily affect?

Web apps

Which browsers and platforms do the issue happened?

Browser: Edge (latest), Browser: Chrome (latest)

Which area does this issue affect?

Attachment: Adaptive Card

What is the public URL for the website?

No response

Please describe the bug

Clickable containers in adaptive cards do not have a hover state indicating they are clickable

Do you see any errors in console log?

No response

How to reproduce the issue?

Send adaptive card like this with selectable container:

{
    "type": "AdaptiveCard",
    "$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
    "version": "1.5",
    "body": [
        {
            "type": "Container",
            "items": [
                {
                    "type": "TextBlock",
                    "text": "Interview Preparation Assistant",
                    "wrap": true,
                    "style": "heading",
                    "horizontalAlignment": "Center"
                }
            ]
        },
        {
            "type": "Container",
            "items": [
                {
                    "type": "Container",
                    "items": [
                       {
                            "type": "Container",
                            "items": [
                                {
                                    "type": "Container",
                                    "items": [
                                        {
                                            "type": "Container",
                                            "items": [
                                                {
                                                    "type": "TextBlock",
                                                    "text": "Test",
                                                    "wrap": true,
                                                    "weight": "Bolder",
                                                    "spacing": "None"
                                                }
                                            ],
                                            "spacing": "Padding"
                                        },
                                    ],
                                    "spacing": "None"
                                }
                            ],
                            "bleed": true,
                            "separator": true,
                            "selectAction": {
                                "type": "Action.Submit",
                                "data": "value"
                            },
                            "spacing": "Medium"
                        }
                    ]
                }
            ]
        }
    ]
}

What do you expect?

Any item with 'ac-selectable' class should show cursor: pointer

What actually happened?

Any item with 'ac-selectable' class do not show as clickable

Do you have any screenshots or recordings to repro the issue?

No response

Adaptive Card JSON

{
    "type": "AdaptiveCard",
    "$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
    "version": "1.5",
    "body": [
        {
            "type": "Container",
            "items": [
                {
                    "type": "TextBlock",
                    "text": "Interview Preparation Assistant",
                    "wrap": true,
                    "style": "heading",
                    "horizontalAlignment": "Center"
                }
            ]
        },
        {
            "type": "Container",
            "items": [
                {
                    "type": "Container",
                    "items": [
                       {
                            "type": "Container",
                            "items": [
                                {
                                    "type": "Container",
                                    "items": [
                                        {
                                            "type": "Container",
                                            "items": [
                                                {
                                                    "type": "TextBlock",
                                                    "text": "Test",
                                                    "wrap": true,
                                                    "weight": "Bolder",
                                                    "spacing": "None"
                                                }
                                            ],
                                            "spacing": "Padding"
                                        },
                                    ],
                                    "spacing": "None"
                                }
                            ],
                            "bleed": true,
                            "separator": true,
                            "selectAction": {
                                "type": "Action.Submit",
                                "data": "value"
                            },
                            "spacing": "Medium"
                        }
                    ]
                }
            ]
        }
    ]
}

Additional context

No response

@lauren-mills lauren-mills added bug Indicates an unexpected problem or an unintended behavior. customer-reported Required for internal Azure reporting. Do not delete. Bot Services Required for internal Azure reporting. Do not delete. Do not change color. labels Apr 11, 2024
@lauren-mills
Copy link
Author

WebChat also does not assign :active and :focus states to these divs when they are clicked, which is an accessibility issue.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area-accessibility Bot Services Required for internal Azure reporting. Do not delete. Do not change color. bug Indicates an unexpected problem or an unintended behavior. customer-reported Required for internal Azure reporting. Do not delete.
Projects
None yet
Development

No branches or pull requests

1 participant