main

mattermost/focalboard

Last updated at: 28/12/2023 01:42

labelOption.scss

TLDR

This file defines the style for a menu label option in the Demo Projects project.

Classes

.Menu

Defines the style for a menu.

.LabelOption.menu-option

Defines the style for a label option in the menu. The option has a disabled state, indicated by the cursor being automatically set to "auto" and pointer events being disabled.

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