.list { box-sizing: border-box; display: flex; flex-direction: column; position: relative; background: #dedede; border-left: 1px solid #ccc; padding: 0; float: left; } /* List resize handle */ .list-resize-handle { position: absolute; top: 0; right: -3px; width: 6px; height: 100%; cursor: col-resize; z-index: 10; background: transparent; transition: background-color 0.2s ease; border-radius: 2px; /* Ensure the handle is clickable */ pointer-events: auto; } .list-resize-handle:hover { background: rgba(0, 123, 255, 0.4); box-shadow: 0 0 4px rgba(0, 123, 255, 0.3); } .list-resize-handle:active { background: rgba(0, 123, 255, 0.6); box-shadow: 0 0 6px rgba(0, 123, 255, 0.4); } /* Show resize handle only on hover */ .list:hover .list-resize-handle { background: rgba(0, 0, 0, 0.1); } .list:hover .list-resize-handle:hover { background: rgba(0, 123, 255, 0.4); box-shadow: 0 0 4px rgba(0, 123, 255, 0.3); } /* Add a subtle indicator line */ .list-resize-handle::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 2px; height: 20px; background: rgba(0, 0, 0, 0.2); border-radius: 1px; opacity: 0; transition: opacity 0.2s ease; } .list-resize-handle:hover::before { opacity: 1; } /* Disable resize handle for collapsed lists and mobile view */ .list.list-collapsed .list-resize-handle, .list.mobile-view .list-resize-handle { display: none; } /* Disable resize handle for auto-width lists */ .list.list-auto-width .list-resize-handle { display: none; } /* Visual feedback during resize */ .list.list-resizing { transition: none !important; box-shadow: 0 0 10px rgba(0, 123, 255, 0.3); /* Ensure the list maintains its new width during resize */ flex: none !important; flex-basis: auto !important; flex-grow: 0 !important; flex-shrink: 0 !important; /* Override any conflicting layout properties */ float: left !important; display: block !important; position: relative !important; /* Force width to be respected */ width: var(--list-width, auto) !important; min-width: var(--list-width, auto) !important; max-width: var(--list-width, auto) !important; /* Ensure the width is applied immediately */ overflow: visible !important; } body.list-resizing-active { cursor: col-resize !important; } body.list-resizing-active * { cursor: col-resize !important; } /* Ensure swimlane container doesn't interfere with list resizing */ .swimlane .list.list-resizing { /* Override any swimlane flex properties */ flex: none !important; flex-basis: auto !important; flex-grow: 0 !important; flex-shrink: 0 !important; /* Ensure width is respected */ width: var(--list-width, auto) !important; min-width: var(--list-width, auto) !important; max-width: var(--list-width, auto) !important; } /* More aggressive override for any container that might interfere */ .js-swimlane .list.list-resizing, .dragscroll .list.list-resizing, [id^="swimlane-"] .list.list-resizing { /* Force the width to be applied */ width: var(--list-width, auto) !important; min-width: var(--list-width, auto) !important; max-width: var(--list-width, auto) !important; flex: none !important; flex-basis: auto !important; flex-grow: 0 !important; flex-shrink: 0 !important; float: left !important; display: block !important; } /* Ensure the width persists after resize is complete */ .js-swimlane .list[style*="--list-width"], .dragscroll .list[style*="--list-width"], [id^="swimlane-"] .list[style*="--list-width"] { /* Maintain the width after resize */ width: var(--list-width, auto) !important; min-width: var(--list-width, auto) !important; max-width: var(--list-width, auto) !important; flex: none !important; flex-basis: auto !important; flex-grow: 0 !important; flex-shrink: 0 !important; float: left !important; display: block !important; } /* Ensure consistent header height for all lists */ .list-header { /* Maintain consistent height and padding for all lists */ min-height: 2.5vh !important; height: auto !important; padding: 2.5vh 1.5vw 0.5vh !important; /* Make sure the background covers the full height */ background-color: #e4e4e4 !important; border-bottom: 0.8vh solid #e4e4e4 !important; /* Use original display for consistent button positioning */ display: block !important; position: relative !important; /* Allow overflow for text wrapping and forms */ overflow: visible !important; } /* Clearfix for floated buttons */ .list-header::after { content: ""; display: table; clear: both; } /* Ensure title text doesn't cause height changes for all lists */ .list-header .list-header-name { /* Allow text wrapping to flow below buttons */ white-space: normal !important; /* Ensure proper line height */ line-height: 1.2 !important; /* Ensure it doesn't overflow horizontally */ overflow-wrap: break-word !important; word-wrap: break-word !important; /* Full width since buttons are now absolutely positioned above */ width: 100% !important; } /* Position elements at top aligned with collapse button */ .list-header .js-open-list-menu { position: absolute !important; top: 5px !important; right: 10px !important; z-index: 15 !important; display: inline-block !important; padding: 4px !important; } .list-header .list-header-plus-top { position: absolute !important; top: 5px !important; right: 10px !important; z-index: 15 !important; display: inline-block !important; padding: 4px !important; } .list-header .list-header-handle-desktop { position: absolute !important; top: 5px !important; right: 40px !important; z-index: 15 !important; display: inline-block !important; cursor: move !important; pointer-events: auto !important; padding: 4px !important; } /* Anchor header action buttons within header during resize */ .list .list-header { position: relative; z-index: 5; } .list .list-header .js-open-list-menu, .list .list-header .list-header-plus-top, .list .list-header .list-header-handle-desktop { position: absolute !important; } [id^="swimlane-"] .list:first-child { min-width: 2.5vw; } .list.list-auto-width { flex: 1; } .list:first-child { border-left: none; flex: none; } .card-details + .list { border-left: none; } .list.ui-sortable-helper { box-shadow: -2px 2px 8px rgba(0,0,0,0.3), 0 0 1px rgba(0,0,0,0.5); transform: rotate(4deg); cursor: grabbing; } .list.ui-sortable-helper .list-header.ui-sortable-handle { cursor: grabbing; } .list.placeholder { background-color: rgba(0,0,0,0.2); border-color: transparent; box-shadow: none; height: 15vh; } .list.list-collapsed { flex: none; min-width: 30px; max-width: 30px; width: 30px; min-height: 60vh; height: 60vh; overflow: visible; position: relative; } .list.list-collapsed .list-header { padding: 5px 0; min-height: 100% !important; height: 100% !important; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; position: relative; overflow: visible !important; width: 30px; max-width: 30px; margin: 0; } .list.list-collapsed .list-header .js-collapse { position: relative !important; left: -10px !important; margin: 5px auto; z-index: 10; padding: 5px; font-size: 16px; white-space: nowrap; display: block; width: auto; left: auto !important; top: auto !important; } .list.list-collapsed .list-header .list-header-handle { position: static !important; margin: 5px auto; z-index: 10; padding: 5px; display: block; width: auto; top: auto !important; right: auto !important; } .list.list-collapsed .list-header .list-header-handle-desktop { position: static !important; margin: 5px auto; z-index: 10; padding: 5px; display: block; width: auto; top: auto !important; right: auto !important; } .list.list-collapsed .list-header .list-rotated { width: auto !important; height: auto !important; margin: 20px 0 0 0 !important; position: relative !important; overflow: visible !important; transform: rotate(90deg); transform-origin: center center; flex: 1; display: flex; align-items: center; justify-content: center; } .list.list-collapsed .list-header .list-rotated h2.list-header-name { text-align: center; overflow: visible; white-space: nowrap; display: block !important; font-size: 12px; line-height: 1.2; color: #333; padding: 4px 8px; margin: 0; width: auto; height: auto; position: static; left: auto; top: auto; transform: none; z-index: 10; visibility: visible !important; opacity: 1 !important; pointer-events: auto; } .list.list-composer, .list-composer { display: none; } /* Show list-composer when inside an active inlined form */ form.inlined-form .list-composer { display: block; } .list.list-composer .open-list-composer, .list .list-composer .open-list-composer { color: #8c8c8c; } .list.list-composer .list-name-input, .list .list-composer .list-name-input { background: #fff; margin: -0.4vh 0 1vh; } .list-header-add { flex: 0 0 auto; padding: 1.5vh 1.5vw; position: relative; min-height: 2.5vh; } .list-header { flex: 0 0 auto; padding: 2.5vh 1.5vw 0.5vh; position: relative; min-height: 2.5vh; background-color: #e4e4e4; border-bottom: 0.8vh solid #e4e4e4; } .list-header.list-header-card-count { min-height: 4.5vh; height: auto; } .list-header.ui-sortable-handle { cursor: grab; } .list-header .list-header-left-icon { display: none; } .list-header .list-header-name { display: block; font-size: clamp(14px, 3vw, 18px); line-height: 1.2; margin: 0; font-weight: bold; min-height: 1.2vh; min-width: 4vw; overflow-wrap: break-word; word-wrap: break-word; vertical-align: top; width: 100%; } /* Sum badge shown before list title */ .list-header .list-sum-badge { display: inline-block; margin-right: 8px; padding: 0; border-radius: 0; background: transparent; color: #8c8c8c; font-weight: bold; font-size: 12px; vertical-align: middle; } .list-rotated { width: 1.3vw; height: 35vh; margin-top: -12vh; margin-left: -14vw; margin-right: 0; transform: rotate(90deg); position: relative; text-overflow: ellipsis; white-space: nowrap; } .list-header .list-header-watch-icon { padding-left: 10px; color: #a6a6a6; } .list-header .list-header-menu { float: right; } @media print { .list-header .list-header-menu, .list-header .list-header-menu-icon { display: none; } } .list-header .list-header-plus-top { color: #a6a6a6; margin-right: 15px; vertical-align: middle; line-height: 1.2; } .list-header .list-header-collapse-right { color: #a6a6a6; } .list-header .list-header-collapse-left { color: #a6a6a6; margin-right: 15px; } /* List header collapse button styling - positioned at top left */ .list-header .js-collapse { position: absolute !important; top: 5px !important; left: 10px !important; color: #a6a6a6; display: inline-block; vertical-align: top; padding: 5px 8px; border: none; border-radius: 0; background-color: transparent; cursor: pointer; font-size: 18px; line-height: 1.2; min-width: 30px; text-align: center; text-decoration: none; margin: 0; z-index: 15; } .list-header .js-collapse:hover { background-color: transparent; color: #333; } /* Title text container - full width below buttons */ .list-header > div { padding-top: 25px; width: 100%; display: block; clear: both; } .list.list-collapsed .list-header .js-collapse { display: inline-block !important; visibility: visible !important; opacity: 1 !important; } /* Hide menu button in collapsed state */ .list.list-collapsed .list-header .js-open-list-menu, .list.list-collapsed .list-header .list-header-menu { display: none !important; } /* Responsive adjustments for collapsed lists */ @media (min-width: 768px) { .list.list-collapsed { min-width: 30px; max-width: 30px; width: 30px; min-height: 60vh; height: 60vh; } .list.list-collapsed .list-header { width: 30px; max-width: 30px; margin: 0; min-height: 100% !important; height: 100% !important; } .list.list-collapsed .list-header .list-rotated { width: auto !important; height: auto !important; margin: 20px 0 0 0 !important; position: relative !important; transform: rotate(90deg); flex: 1; } .list.list-collapsed .list-header .list-rotated h2.list-header-name { width: auto; font-size: 12px; height: auto; line-height: 1.2; padding: 4px 8px; margin: 0; overflow: visible; position: static; left: auto; top: auto; transform: none; text-align: center; visibility: visible !important; opacity: 1 !important; display: block !important; background-color: transparent; border: none; color: #333; z-index: 10; } .list.list-collapsed .list-header .js-collapse { margin: 5px auto; } } @media (min-width: 1024px) { .list.list-collapsed { min-width: 30px; max-width: 30px; width: 30px; min-height: 60vh; height: 60vh; } .list.list-collapsed .list-header { width: 30px; max-width: 30px; min-height: 100% !important; height: 100% !important; } .list.list-collapsed .list-header .list-rotated { width: auto !important; height: auto !important; margin: 20px 0 0 0 !important; position: relative !important; transform: rotate(90deg); flex: 1; } .list.list-collapsed .list-header .list-rotated h2.list-header-name { width: auto; font-size: 12px; height: auto; line-height: 1.2; padding: 4px 8px; margin: 0; overflow: visible; position: static; left: auto; top: auto; transform: none; text-align: center; visibility: visible !important; opacity: 1 !important; display: block !important; background-color: transparent; border: none; color: #333; z-index: 10; } .list.list-collapsed .list-header .js-collapse { margin: 5px auto; } } @media (min-width: 1200px) { .list.list-collapsed { min-width: 30px; max-width: 30px; width: 30px; min-height: 60vh; height: 60vh; } .list.list-collapsed .list-header { width: 30px; max-width: 30px; min-height: 100% !important; height: 100% !important; } .list.list-collapsed .list-header .list-rotated { width: auto !important; height: auto !important; margin: 20px 0 0 0 !important; position: relative !important; transform: rotate(90deg); flex: 1; } .list.list-collapsed .list-header .list-rotated h2.list-header-name { width: auto; font-size: 12px; height: auto; line-height: 1.2; padding: 4px 8px; margin: 0; overflow: visible; position: static; left: auto; top: auto; transform: none; text-align: center; visibility: visible !important; opacity: 1 !important; display: block !important; background-color: transparent; border: none; color: #333; z-index: 10; } .list.list-collapsed .list-header .js-collapse { margin: 5px auto; } } .list-header .list-header-collapse { color: #a6a6a6; margin-right: 15px; } .list-header .highlight { color: #ce1414; } .list-header .cardCount { color: #8c8c8c; font-size: 12px; font-weight: bold; } .list-header .list-header-plus-top, .js-open-list-menu, .list-header-menu a { color: #4d4d4d; padding-left: 4px; } .js-open-list-menu { font-size: 18px; vertical-align: middle; line-height: 1.2; } .list-body { flex: 1 1 auto; flex-direction: column; display: flex; overflow-y: auto; padding: 5px 11px; } .list-body .minicards { flex-grow: 1; flex-shrink: 0; /** get card drag/drop working for empty swimlanes */ min-height: 32px; } .list-body .minicards form { margin-bottom: 9px; } .list-body .minicards .add-controls button { min-height: 50px; } .list-body .open-minicard-composer { border-radius: 2px; color: #8c8c8c; display: block; padding: 7px 10px; position: relative; text-decoration: none; animation: fadeIn 0.3s; } @media print { .list-body .open-minicard-composer { display: none; } } .list-body .open-minicard-composer i.fa { margin-right: 7px; } .list-body .open-minicard-composer:hover { background: #fafafa; color: #222; box-shadow: 0 1px 2px rgba(0,0,0,0.2); } #js-wip-limit-edit { padding-top: 2%; } #js-wip-limit-edit p { margin-bottom: 0; } #js-wip-limit-edit input { display: inline-block; } #js-wip-limit-edit .wip-limit-value { width: 20%; margin-right: 5%; } #js-wip-limit-edit .wip-limit-error { display: none; } #js-wip-limit-edit .soft-wip-limit { margin-right: 8px; } #js-wip-limit-edit div { float: left; } #js-list-width-edit .list-width-error { display: none; } /* Mobile view styles - applied when isMiniScreen is true (iPhone, etc.) */ .mini-list.mobile-view { flex: 0 0 60px; height: auto; width: 100vw; max-width: 100vw; min-width: 100vw; border-left: 0px !important; border-bottom: 1px solid #ccc; display: block !important; } .list.mobile-view { display: block !important; flex-basis: auto; width: 100vw; max-width: 100vw; min-width: 100vw; border-left: 0px !important; margin: 0 !important; padding: 0 !important; } .list.mobile-view:first-child { margin-left: 0px; } .list.mobile-view.ui-sortable-helper { flex: 0 0 60px; height: 60px; width: 100vw; max-width: 100vw; border-left: 0px !important; border-bottom: 1px solid #ccc; display: block !important; } .list.mobile-view.ui-sortable-helper .list-header.ui-sortable-handle { cursor: grabbing; } .list.mobile-view.placeholder { flex: 0 0 60px; height: 60px; width: 100vw; max-width: 100vw; border-left: 0px !important; border-bottom: 1px solid #ccc; display: block !important; } .list.mobile-view .list-body { padding: 15px 19px; width: 100vw; max-width: 100vw; min-width: 100vw; } .list.mobile-view .list-header { /*Updated padding values for mobile devices, this should fix text grouping issue*/ padding: 20px 0px 20px 0px; border-bottom: 0px solid #e4e4e4; min-height: 30px; margin-top: 10px; align-items: center; width: 100vw; max-width: 100vw; min-width: 100vw; /* Force grid layout for iPhone */ display: grid !important; grid-template-columns: 30px 1fr auto auto !important; gap: 10px !important; } .list.mobile-view .list-header .list-header-left-icon { padding: 7px; padding-right: 27px; margin-top: 1px; top: -7px; left: -7px; } .list.mobile-view .list-header .list-header-menu-icon { padding: 14px; font-size: 40px !important; text-align: center; /* Force positioning for iPhone */ position: absolute !important; right: 60px !important; top: 50% !important; transform: translateY(-50%) !important; z-index: 10; } .list.mobile-view .list-header .list-header-handle { padding: 14px; font-size: 48px !important; text-align: center; /* Force positioning for iPhone */ position: absolute !important; right: 10px !important; top: 50% !important; transform: translateY(-50%) !important; z-index: 10; } .list.mobile-view .list-header .list-header-left-icon { display: grid; grid-row: 1/3; grid-column: 1; } .list.mobile-view .list-header .list-header-name { grid-row: 1; grid-column: 2; align-self: end; font-size: 20px !important; font-weight: bold; line-height: 1.2; padding-bottom: 2px; } .list.mobile-view .list-header .cardCount { grid-row: 2; grid-column: 2; align-self: start; text-align: left; padding-left: 0; margin-left: 0; font-size: 16px !important; line-height: 1.2; } .list.mobile-view .list-header .list-header-menu { grid-row: 1/3; grid-column: 3; } .list.mobile-view .list-header .list-header-menu-icon { grid-row: 1/3; grid-column: 3; } .list.mobile-view .list-header .list-header-handle { grid-row: 1/3; grid-column: 4; } .list.mobile-view .list-header .inlined-form { grid-row: 1/3; grid-column: 1/4; } .list.mobile-view .list-header .edit-controls { align-items: initial; } @media screen and (max-width: 800px), screen and (max-device-width: 932px) and (-webkit-min-device-pixel-ratio: 3) { .mini-list { flex: 0 0 60px; height: auto; width: 100vw; max-width: 100vw; min-width: 100vw; border-left: 0px !important; border-bottom: 1px solid #ccc; display: block !important; } .list { display: block !important; flex-basis: auto; width: 100vw; max-width: 100vw; min-width: 100vw; border-left: 0px !important; margin: 0 !important; padding: 0 !important; } .list:first-child { margin-left: 0px; } .list.ui-sortable-helper { flex: 0 0 60px; height: 60px; width: 100vw; max-width: 100vw; border-left: 0px !important; border-bottom: 1px solid #ccc; display: block !important; } .list.ui-sortable-helper .list-header.ui-sortable-handle { cursor: grabbing; } .list.placeholder { flex: 0 0 60px; height: 60px; width: 100vw; max-width: 100vw; border-left: 0px !important; border-bottom: 1px solid #ccc; display: block !important; } .list-body { padding: 15px 19px; width: 100vw; max-width: 100vw; min-width: 100vw; } .list-header { /*Updated padding values for mobile devices, this should fix text grouping issue*/ padding: 20px 0px 20px 0px; border-bottom: 0px solid #e4e4e4; min-height: 30px; margin-top: 10px; align-items: center; width: 100vw; max-width: 100vw; min-width: 100vw; } .list-header .list-header-left-icon { padding: 7px; padding-right: 27px; margin-top: 1px; top: -7px; left: -7px; } .list-header .list-header-menu-icon { padding: 14px; font-size: 40px; text-align: center; /* iOS Safari fallback positioning */ position: absolute; right: 60px; top: 50%; transform: translateY(-50%); } .list-header .list-header-handle { padding: 14px; font-size: 48px; text-align: center; /* iOS Safari fallback positioning */ position: absolute; right: 10px; top: 50%; transform: translateY(-50%); } .list-header { display: grid; grid-template-columns: 30px 1fr auto auto; gap: 10px; } .list-header .list-header-left-icon { display: grid; grid-row: 1/3; grid-column: 1; } .list-header .list-header-name { grid-row: 1; grid-column: 2; align-self: end; font-size: 20px; font-weight: bold; line-height: 1.2; padding-bottom: 2px; } .list-header .cardCount { grid-row: 2; grid-column: 2; align-self: start; font-size: 16px; line-height: 1.2; } .list-header .list-header-menu { grid-row: 1/3; grid-column: 3; } .list-header .list-header-menu-icon { grid-row: 1/3; grid-column: 3; } .list-header .list-header-handle { grid-row: 1/3; grid-column: 4; } .list-header .inlined-form { grid-row: 1/3; grid-column: 1/4; } .list-header .edit-controls { align-items: initial; } } /* iPhone 12 Mini specific - fix icon positioning in stacked lists view */ @media screen and (device-width: 375px) and (device-height: 812px), /* iPhone 12 Mini exact */ screen and (max-width: 375px) and (max-height: 812px), /* iPhone 12 Mini viewport */ screen and (-webkit-min-device-pixel-ratio: 3) and (max-width: 375px) /* iPhone 12 Mini Retina */ { .list.mobile-view .list-header { /* Force grid layout for iPhone 12 Mini */ display: grid !important; grid-template-columns: 30px 1fr auto auto !important; gap: 10px !important; align-items: center !important; } .list.mobile-view .list-header .list-header-menu-icon { /* Remove absolute positioning for iPhone 12 Mini */ position: static !important; right: auto !important; top: auto !important; transform: none !important; /* Use grid positioning */ grid-row: 1/3 !important; grid-column: 3 !important; padding: 14px !important; font-size: 40px !important; text-align: center !important; } .list.mobile-view .list-header .list-header-handle { /* Remove absolute positioning for iPhone 12 Mini */ position: static !important; right: auto !important; top: auto !important; transform: none !important; /* Use grid positioning */ grid-row: 1/3 !important; grid-column: 4 !important; padding: 14px !important; font-size: 48px !important; text-align: center !important; } .list.mobile-view .list-header .list-header-name { grid-row: 1 !important; grid-column: 2 !important; align-self: end !important; font-size: 20px !important; font-weight: bold !important; line-height: 1.2 !important; padding-bottom: 2px !important; } .list.mobile-view .list-header .cardCount { grid-row: 2 !important; grid-column: 2 !important; align-self: start !important; text-align: left !important; padding-left: 0 !important; margin-left: 0 !important; font-size: 16px !important; line-height: 1.2 !important; } .list.mobile-view .list-header .list-header-left-icon { display: grid !important; grid-row: 1/3 !important; grid-column: 1 !important; } } /* iPhone device JavaScript detection fallback - fix icon positioning */ .iphone-device .list.mobile-view .list-header { /* Force grid layout for iPhone devices */ display: grid !important; grid-template-columns: 30px 1fr auto auto !important; gap: 10px !important; align-items: center !important; } .iphone-device .list.mobile-view .list-header .list-header-menu-icon { /* Remove absolute positioning for iPhone devices */ position: static !important; right: auto !important; top: auto !important; transform: none !important; /* Use grid positioning */ grid-row: 1/3 !important; grid-column: 3 !important; padding: 14px !important; font-size: 40px !important; text-align: center !important; } .iphone-device .list.mobile-view .list-header .list-header-handle { /* Remove absolute positioning for iPhone devices */ position: static !important; right: auto !important; top: auto !important; transform: none !important; /* Use grid positioning */ grid-row: 1/3 !important; grid-column: 4 !important; padding: 14px !important; font-size: 48px !important; text-align: center !important; } .iphone-device .list.mobile-view .list-header .list-header-name { grid-row: 1 !important; grid-column: 2 !important; align-self: end !important; font-size: 20px !important; font-weight: bold !important; line-height: 1.2 !important; padding-bottom: 2px !important; } .iphone-device .list.mobile-view .list-header .cardCount { grid-row: 2 !important; grid-column: 2 !important; align-self: start !important; font-size: 16px !important; line-height: 1.2 !important; } .iphone-device .list.mobile-view .list-header .list-header-left-icon { display: grid !important; grid-row: 1/3 !important; grid-column: 1 !important; } /* Allow long list titles to expand on desktop (non-mobile, non-collapsed) */ .list:not(.mobile-view):not(.list-collapsed) .list-header { overflow: visible !important; } .list:not(.mobile-view):not(.list-collapsed) .list-header .list-header-name { /* Permit wrapping and full visibility */ white-space: normal !important; overflow: visible !important; text-overflow: clip !important; display: block !important; /* Full width since buttons are absolutely positioned */ width: 100% !important; /* Break long words to avoid overflow */ word-break: break-word !important; } .link-board-wrapper { display: flex; align-items: baseline; } .link-board-wrapper .js-link-board { margin-left: 15px; } .search-card-results { max-height: 250px; overflow: hidden; } .sk-spinner-list { margin-top: unset !important; } .list-header-white { border-bottom: 6px solid #fff; } .list-header-green { border-bottom: 6px solid #3cb500; } .list-header-yellow { border-bottom: 6px solid #fad900; } .list-header-orange { border-bottom: 6px solid #ff9f19; } .list-header-red { border-bottom: 6px solid #eb4646; } .list-header-purple { border-bottom: 6px solid #a632db; } .list-header-blue { border-bottom: 6px solid #0079bf; } .list-header-pink { border-bottom: 6px solid #ff78cb; } .list-header-sky { border-bottom: 6px solid #00c2e0; } .list-header-black { border-bottom: 6px solid #4d4d4d; } .list-header-lime { border-bottom: 6px solid #51e898; } .list-header-silver { border-bottom: 6px solid #e4e4e4; } .list-header-peachpuff { border-bottom: 6px solid #ffdab9; } .list-header-crimson { border-bottom: 6px solid #dc143c; } .list-header-plum { border-bottom: 6px solid #dda0dd; } .list-header-darkgreen { border-bottom: 6px solid #006400; } .list-header-slateblue { border-bottom: 6px solid #6a5acd; } .list-header-magenta { border-bottom: 6px solid #f0f; } .list-header-gold { border-bottom: 6px solid #ffd700; } .list-header-navy { border-bottom: 6px solid #000080; } .list-header-gray { border-bottom: 6px solid #808080; } .list-header-saddlebrown { border-bottom: 6px solid #8b4513; } .list-header-paleturquoise { border-bottom: 6px solid #afeeee; } .list-header-mistyrose { border-bottom: 6px solid #ffe4e1; } .list-header-indigo { border-bottom: 6px solid #4b0082; } .list.list-collapsed .collapsed-list-drag-area { width: 100%; height: 60px; display: flex; align-items: center; justify-content: center; cursor: grab; user-select: none; } .list.list-collapsed .collapsed-list-drag-area:active { cursor: grabbing; } .list.list-collapsed .list-header-name-collapsed { writing-mode: vertical-rl; text-align: center; font-size: 12px; color: #333; margin: 0; padding: 0; width: 100%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } .list.list-collapsed .list-header .js-collapse { position: relative !important; left: -10px !important; color: #333; background: transparent; border: none; border-radius: 0; width: auto; height: auto; min-width: 0; min-height: 0; display: block !important; align-items: initial; justify-content: initial; font-size: 16px !important; box-shadow: none; margin: 5px auto; z-index: 10; }