| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107 | 
							- .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;
 
-   /* Prevent vertical expansion but allow normal height */
 
-   overflow: hidden !important;
 
- }
 
- /* Ensure title text doesn't cause height changes for all lists */
 
- .list-header .list-header-name {
 
-   /* Prevent text wrapping to maintain consistent height */
 
-   white-space: nowrap !important;
 
-   /* Truncate text with ellipsis if too long */
 
-   text-overflow: ellipsis !important;
 
-   /* Ensure proper line height */
 
-   line-height: 1.2 !important;
 
-   /* Ensure it doesn't overflow */
 
-   overflow: hidden !important;
 
-   /* Add margin to prevent overlap with buttons */
 
-   margin-right: 120px !important;
 
- }
 
- /* Position drag handle at top-right corner for ALL lists */
 
- .list-header .list-header-handle {
 
-   /* Position at top-right corner, aligned with title text top */
 
-   position: absolute !important;
 
-   top: 2.5vh !important;
 
-   right: 1.5vw !important;
 
-   /* Ensure it's above other elements */
 
-   z-index: 15 !important;
 
-   /* Remove margin since it's absolutely positioned */
 
-   margin-right: 0 !important;
 
-   /* Ensure proper display */
 
-   display: inline-block !important;
 
-   /* Ensure it's clickable and shows proper cursor */
 
-   cursor: move !important;
 
-   pointer-events: auto !important;
 
-   /* Add some padding for better clickability */
 
-   padding: 4px !important;
 
- }
 
- /* Ensure buttons maintain original positioning */
 
- .js-swimlane .list[style*="--list-width"] .list-header .list-header-plus-top,
 
- .js-swimlane .list[style*="--list-width"] .list-header .js-collapse,
 
- .js-swimlane .list[style*="--list-width"] .list-header .js-open-list-menu,
 
- .dragscroll .list[style*="--list-width"] .list-header .list-header-plus-top,
 
- .dragscroll .list[style*="--list-width"] .list-header .js-collapse,
 
- .dragscroll .list[style*="--list-width"] .list-header .js-open-list-menu,
 
- [id^="swimlane-"] .list[style*="--list-width"] .list-header .list-header-plus-top,
 
- [id^="swimlane-"] .list[style*="--list-width"] .list-header .js-collapse,
 
- [id^="swimlane-"] .list[style*="--list-width"] .list-header .js-open-list-menu {
 
-   /* Use original positioning to maintain layout */
 
-   position: relative !important;
 
-   /* Maintain original spacing */
 
-   margin-right: 15px !important;
 
-   /* Ensure proper display */
 
-   display: inline-block !important;
 
- }
 
- /* Ensure watch icon and card count maintain original positioning */
 
- .js-swimlane .list[style*="--list-width"] .list-header .list-header-watch-icon,
 
- .dragscroll .list[style*="--list-width"] .list-header .list-header-watch-icon,
 
- [id^="swimlane-"] .list[style*="--list-width"] .list-header .list-header-watch-icon,
 
- .js-swimlane .list[style*="--list-width"] .list-header .cardCount,
 
- .dragscroll .list[style*="--list-width"] .list-header .cardCount,
 
- [id^="swimlane-"] .list[style*="--list-width"] .list-header .cardCount {
 
-   /* Use original positioning to maintain layout */
 
-   position: relative !important;
 
-   /* Maintain original spacing */
 
-   margin-right: 15px !important;
 
-   /* Ensure proper display */
 
-   display: inline-block !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: 60px;
 
-   max-width: 80px;
 
-   width: 60px;
 
-   min-height: 60vh;
 
-   height: 60vh;
 
-   overflow: visible;
 
-   position: relative;
 
- }
 
- .list.list-collapsed .list-header {
 
-   padding: 1vh 1.5vw 0.5vh;
 
-   min-height: 2.5vh !important;
 
-   height: auto !important;
 
-   display: flex;
 
-   flex-direction: column;
 
-   align-items: center;
 
-   justify-content: flex-start;
 
-   position: relative;
 
-   overflow: visible !important;
 
-   width: 100%;
 
-   max-width: 60px;
 
-   margin: 0 auto;
 
- }
 
- .list.list-collapsed .list-header .js-collapse {
 
-   margin: 0 auto 20px auto;
 
-   z-index: 10;
 
-   padding: 8px 12px;
 
-   font-size: 12px;
 
-   white-space: nowrap;
 
-   display: block;
 
-   width: fit-content;
 
- }
 
- .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;
 
- }
 
- .list.list-collapsed .list-header .list-rotated h2.list-header-name {
 
-   text-align: left;
 
-   overflow: visible;
 
-   white-space: nowrap;
 
-   display: block !important;
 
-   font-size: 12px;
 
-   line-height: 1.2;
 
-   color: #333;
 
-   background-color: rgba(255, 255, 255, 0.95);
 
-   border: 1px solid #ddd;
 
-   padding: 8px 4px;
 
-   border-radius: 4px;
 
-   margin: 0 auto;
 
-   width: 25vh;
 
-   height: 60vh;
 
-   position: absolute;
 
-   left: 50%;
 
-   top: 50%;
 
-   transform: translate(calc(-50% + 50px), -50%) rotate(0deg);
 
-   z-index: 10;
 
-   visibility: visible !important;
 
-   opacity: 1 !important;
 
-   pointer-events: none;
 
- }
 
- .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: inline;
 
-   font-size: clamp(14px, 3vw, 18px);
 
-   line-height: 1.2;
 
-   margin: 0;
 
-   font-weight: bold;
 
-   min-height: 1.2vh;
 
-   min-width: 4vw;
 
-   overflow: hidden;
 
-   text-overflow: ellipsis;
 
-   word-wrap: break-word;
 
- }
 
- .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-rotated {
 
- }
 
- .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;
 
- }
 
- .list-header .list-header-collapse-right {
 
-   color: #a6a6a6;
 
- }
 
- .list-header .list-header-collapse-left {
 
-   color: #a6a6a6;
 
-   margin-right: 15px;
 
- }
 
- .list-header .js-collapse {
 
-   color: #a6a6a6;
 
-   margin-right: 15px;
 
-   display: inline-block;
 
-   vertical-align: middle;
 
-   padding: 5px 8px;
 
-   border: 1px solid #ccc;
 
-   border-radius: 4px;
 
-   background-color: #f5f5f5;
 
-   cursor: pointer;
 
-   font-size: 14px;
 
- }
 
- .list-header .js-collapse:hover {
 
-   background-color: #e0e0e0;
 
-   color: #333;
 
- }
 
- .list.list-collapsed .list-header .js-collapse {
 
-   display: inline-block !important;
 
-   visibility: visible !important;
 
-   opacity: 1 !important;
 
- }
 
- /* Responsive adjustments for collapsed lists */
 
- @media (min-width: 768px) {
 
-   .list.list-collapsed {
 
-     min-width: 60px;
 
-     max-width: 80px;
 
-     width: 60px;
 
-     min-height: 60vh;
 
-     height: 60vh;
 
-   }
 
-   .list.list-collapsed .list-header {
 
-     max-width: 60px;
 
-     margin: 0 auto;
 
-     min-height: 2.5vh !important;
 
-     height: auto !important;
 
-   }
 
-   .list.list-collapsed .list-header .list-rotated {
 
-     width: auto !important;
 
-     height: auto !important;
 
-     margin: 20px 0 0 0 !important;
 
-     position: relative !important;
 
-   }
 
-   .list.list-collapsed .list-header .list-rotated h2.list-header-name {
 
-     width: 15vh;
 
-     font-size: 12px;
 
-     height: 30px;
 
-     line-height: 1.2;
 
-     padding: 8px 4px;
 
-     margin: 0 auto;
 
-     position: absolute;
 
-     left: 50%;
 
-     top: 50%;
 
-     transform: translate(calc(-50% + 50px), -50%) rotate(0deg);
 
-     text-align: left;
 
-     visibility: visible !important;
 
-     opacity: 1 !important;
 
-     display: block !important;
 
-     background-color: rgba(255, 255, 255, 0.95);
 
-     border: 1px solid #ddd;
 
-     color: #333;
 
-     z-index: 10;
 
-   }
 
-   .list.list-collapsed .list-header .js-collapse {
 
-     margin: 0 auto 20px auto;
 
-   }
 
- }
 
- @media (min-width: 1024px) {
 
-   .list.list-collapsed {
 
-     min-height: 60vh;
 
-     height: 60vh;
 
-   }
 
-   .list.list-collapsed .list-header {
 
-     min-height: 2.5vh !important;
 
-     height: auto !important;
 
-   }
 
-   .list.list-collapsed .list-header .list-rotated {
 
-     width: auto !important;
 
-     height: auto !important;
 
-     margin: 20px 0 0 0 !important;
 
-     position: relative !important;
 
-   }
 
-   .list.list-collapsed .list-header .list-rotated h2.list-header-name {
 
-     width: 15vh;
 
-     font-size: 12px;
 
-     height: 30px;
 
-     line-height: 1.2;
 
-     padding: 8px 4px;
 
-     margin: 0 auto;
 
-     position: absolute;
 
-     left: 50%;
 
-     top: 50%;
 
-     transform: translate(calc(-50% + 50px), -50%) rotate(0deg);
 
-     text-align: left;
 
-     visibility: visible !important;
 
-     opacity: 1 !important;
 
-     display: block !important;
 
-     background-color: rgba(255, 255, 255, 0.95);
 
-     border: 1px solid #ddd;
 
-     color: #333;
 
-     z-index: 10;
 
-   }
 
-   .list.list-collapsed .list-header .js-collapse {
 
-     margin: 0 auto 20px auto;
 
-   }
 
- }
 
- @media (min-width: 1200px) {
 
-   .list.list-collapsed {
 
-     min-height: 60vh;
 
-     height: 60vh;
 
-   }
 
-   .list.list-collapsed .list-header {
 
-     min-height: 2.5vh !important;
 
-     height: auto !important;
 
-   }
 
-   .list.list-collapsed .list-header .list-rotated {
 
-     width: auto !important;
 
-     height: auto !important;
 
-     margin: 20px 0 0 0 !important;
 
-     position: relative !important;
 
-   }
 
-   .list.list-collapsed .list-header .list-rotated h2.list-header-name {
 
-     width: 15vh;
 
-     font-size: 12px;
 
-     height: 30px;
 
-     line-height: 1.2;
 
-     padding: 8px 4px;
 
-     margin: 0 auto;
 
-     position: absolute;
 
-     left: 50%;
 
-     top: 50%;
 
-     transform: translate(calc(-50% + 50px), -50%) rotate(0deg);
 
-     text-align: left;
 
-     visibility: visible !important;
 
-     opacity: 1 !important;
 
-     display: block !important;
 
-     background-color: rgba(255, 255, 255, 0.95);
 
-     border: 1px solid #ddd;
 
-     color: #333;
 
-     z-index: 10;
 
-   }
 
-   .list.list-collapsed .list-header .js-collapse {
 
-     margin: 0 auto 20px 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;
 
- }
 
- .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: 100%;
 
-   min-width: 100%;
 
-   border-left: 0px !important;
 
-   border-bottom: 1px solid #ccc;
 
- }
 
- .list.mobile-view {
 
-   display: contents;
 
-   flex-basis: auto;
 
-   width: 100%;
 
-   min-width: 100%;
 
-   border-left: 0px !important;
 
- }
 
- .list.mobile-view:first-child {
 
-   margin-left: 0px;
 
- }
 
- .list.mobile-view.ui-sortable-helper {
 
-   flex: 0 0 60px;
 
-   height: 60px;
 
-   width: 100%;
 
-   border-left: 0px !important;
 
-   border-bottom: 1px solid #ccc;
 
- }
 
- .list.mobile-view.ui-sortable-helper .list-header.ui-sortable-handle {
 
-   cursor: grabbing;
 
- }
 
- .list.mobile-view.placeholder {
 
-   flex: 0 0 60px;
 
-   height: 60px;
 
-   width: 100%;
 
-   border-left: 0px !important;
 
-   border-bottom: 1px solid #ccc;
 
- }
 
- .list.mobile-view .list-body {
 
-   padding: 15px 19px;
 
-   width: 100%;
 
-   min-width: 100%;
 
- }
 
- .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: 100%;
 
-   min-width: 100%;
 
-   /* 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;
 
-   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: 100%;
 
-     min-width: 100%;
 
-     border-left: 0px !important;
 
-     border-bottom: 1px solid #ccc;
 
-   }
 
-   .list {
 
-     display: contents;
 
-     flex-basis: auto;
 
-     width: 100%;
 
-     min-width: 100%;
 
-     border-left: 0px !important;
 
-   }
 
-   .list:first-child {
 
-     margin-left: 0px;
 
-   }
 
-   .list.ui-sortable-helper {
 
-     flex: 0 0 60px;
 
-     height: 60px;
 
-     width: 100%;
 
-     border-left: 0px !important;
 
-     border-bottom: 1px solid #ccc;
 
-   }
 
-   .list.ui-sortable-helper .list-header.ui-sortable-handle {
 
-     cursor: grabbing;
 
-   }
 
-   .list.placeholder {
 
-     flex: 0 0 60px;
 
-     height: 60px;
 
-     width: 100%;
 
-     border-left: 0px !important;
 
-     border-bottom: 1px solid #ccc;
 
-   }
 
-   .list-body {
 
-     padding: 15px 19px;
 
-     width: 100%;
 
-     min-width: 100%;
 
-   }
 
-   .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: 100%;
 
-     min-width: 100%;
 
-   }
 
-   .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;
 
-     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;
 
- }
 
- .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;
 
- }
 
 
  |