Skip to end of banner
Go to start of banner

Popups

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this content. View the current version.

Compare with Current View Version History

« Previous Version 71 Next »

Related Pages: Message PopupsDialogs

Description

A popup is a small window which appears over the primary screen, designed to display important information or collect information from the user.

Popups appear as a result of a user action, such as clicking a button, a link or a menu action.

Popups must be dismissed by the user before returning to the primary screen.

Types

Type

Usage

Example

Message Popups

Displaying warnings, error messages, and important information.

Dialogs

Collecting information from the user, or allowing them to make decisions.

image-20240118-113426.png

Usage & Behavior

General guidelines

  • A popup window usually appears as a result of a user clicking a button, an icon, or a link.

Structure

A popup window consists of:

  • A colored header, including:

    • a label (see Content below).

    • a close button (unless otherwise specified).

    • a help button (optional).

  • A content area, which:

    • contains a title describing the action that will be performed.

    • may contain text, inputs and controls.

  • Buttons, including:

    • a primary action button.

    • a secondary action button, if relevant.

    • other action buttons, if relevant.

The popup appears over a semi-transparent black background with an opacity of 40%.

Placement and Positioning

  • The popup is centered horizontally on the screen.

  • The popup appears at 2/3 height of the screen.

  • The user will be able to move the popup around the screen.

  • The user cannot change the width or height of a popup window.

Content

  • Popup header labels should describe the object they are referring to, and may including the following information:

    • Object name - a specific label for the individual item the popup relates to, e.g. Agent Name, Article Title, or Timestamp.

    • Object type - the class of item, for example an Interaction, Article, or Shift.

      • Object type should be included for all Add New popups.

      • When object name and type are both used, it should be in the format [Object type]: [Object name], e.g. Interaction: 07/28/2023 04:49:25 AM.

    • Additional object metadata - such as timestamps, user type etc. Each additional piece of metadata should be separated using a divider, e.g. Interaction: Agent name | 07/28/2023 04:49:25 AM | Agent role.

  • Where a popup does not relate to an object, its header label should be the name of the tool or a message title instead, e.g. Calculator.

  • If the header text exceeds the container’s width it will be truncate, showing an ellipsis (…). In this case, hovering over the header will open a tooltip showing the full header text.

  • In rare cases, button labels may change as a result of a user action.

Interaction

  • The popup can be closed by either:

    • clicking the close (X) button,

    • clicking the primary or secondary action buttons, or

    • pressing the Esc key.

  • Clicking outside of the popup will not close it.

  • For interactions within dialog boxes see Dialogs.

Validations and errors

  • Message popups do not require special validations.

  • For information about dialogs validations, see Dialogs.

Transitions

  • The semi-transparent background will appear and disappear with a fade effect.

  • The popup window itself will appear and disappear with a fade effect.

Best practices

Use

  • to display important information. Remember that popups can be intrusive.

Do not use

  • to display a large amount of content. In this case, link to another page or, in case of a dialog, consider using a Form.

  • to display unintrusive messages. In this case, consider using Toasts.

General

  • Keep the text short and informative.

  • Avoid opening a popup from another popup.

Accessibility compliance

Unless otherwise specified, see our general compliance information in Fundamentals - Accessibility.

Focus management

The tab index flow will follow the order displayed below. Shift + Tab will follow the reverse order.

In case there are more than 2 dialog buttons at the bottom of the popup, see example below:

  • If the content is not focusable, 1st item to get focus will be the Enter button.

  • The same logic order as above should apply even if any of the other buttons don’t appear.

Focus visual style on pop-up headers will have a different indication than other LUX components due to the background fill color:

  • Help, Informative, and Error will use a White color F/ocus

  • The warning pop-up will use a Black color Focus

Design

See Message Popups and Dialogs.

Code

See Message Popups and Dialogs.

  • No labels