| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126 |
- .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-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: 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;
- 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;
- 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;
- }
|