/*
 * board-lists.css - Shared list header styles
 * Minimal global CSS for cross-component list header name styling
 */

/* =============================================================================
   SHARED LIST HEADER STYLES
   ============================================================================= */

/*
 * .list-header-name - MUST stay global
 * Used by both PlsDynamicBoardView and PlsBoardSwimlaneView
 * Cannot be scoped because both components author this class in their own templates
 */
.list-header-name {
    display: inline-block;
    font-size: 16px;
    line-height: 18px;
    margin: 0;
    font-weight: bold;
    min-height: 20px;
    min-width: 30px;
    max-width: 142px;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    color: var(--text-color);
}

/* Only show cursor pointer when editable */
.list-header-name.is-editable {
    cursor: pointer;
}

