main

mattermost/focalboard

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

cardActionsMenuIcon.scss

TLDR

The cardActionsMenuIcon.scss file contains styles for the CardActionsMenuIcon component.

Classes

CardActionsMenuIcon

This class defines the styles for the CardActionsMenuIcon component. It sets the border radius, padding, box shadow, height, and width of the component. It also applies a hover effect that changes the background color.

.CardActionsMenuIcon {
    border-radius: 3px;
    padding: 0;
    box-shadow: rgba(var(--center-channel-color-rgb), 0.1) 0 0 0 1px,
        rgba(var(--center-channel-color-rgb), 0.1) 0 2px 4px;
    height: 24px;
    width: 24px;

    &:hover {
        background: rgb(var(--center-channel-color-rgb), 0.1);
    }
}