main

mattermost/focalboard

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

delete.scss

TLDR

This file contains the styles for the "DeleteIcon" widget.

Classes

Class DeleteIcon

The DeleteIcon class defines the styles for the delete icon widget. It sets the fill color to a semi-transparent version of the --center-channel-color, removes the stroke, and sets the width and height properties to 24 pixels.

.DeleteIcon {
    fill: rgba(var(--center-channel-color-rgb), 0.5);
    stroke: none;
    width: 24px;
    height: 24px;
}