main

mattermost/focalboard

Last updated at: 29/12/2023 09:42

labelOption.scss

TLDR

This file contains the SCSS code for styling the label option of a menu widget.

Classes

Menu

This class represents the menu widget. It contains styles for the label option.

.LabelOption.menu-option

This class represents the label option within the menu widget. It applies styles that make the cursor auto and disable pointer events.

.Menu {
    .LabelOption.menu-option {
        cursor: auto;
        pointer-events: none;
    }
}