main

mattermost/focalboard

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

colorOption.scss

TLDR

This file contains the styling for the color option in the menu.

Classes

.ColorOption

This class defines the styling for the color option in the menu.

.menu-colorbox

This class defines the styling for the color box in the color option. It sets the display to inline-block, applies margin, sets the width and height, adds border radius and a box shadow.

.ColorOption {
    .menu-colorbox {
        display: inline-block;
        margin-right: 8px;
        vertical-align: middle;
        width: 18px;
        height: 18px;
        border-radius: 3px;
        box-shadow: rgba(15, 15, 15, 0.1) 0 0 0 1px inset;
    }
}