list.css 28 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126
  1. .list {
  2. box-sizing: border-box;
  3. display: flex;
  4. flex-direction: column;
  5. position: relative;
  6. background: #dedede;
  7. border-left: 1px solid #ccc;
  8. padding: 0;
  9. float: left;
  10. }
  11. /* List resize handle */
  12. .list-resize-handle {
  13. position: absolute;
  14. top: 0;
  15. right: -3px;
  16. width: 6px;
  17. height: 100%;
  18. cursor: col-resize;
  19. z-index: 10;
  20. background: transparent;
  21. transition: background-color 0.2s ease;
  22. border-radius: 2px;
  23. /* Ensure the handle is clickable */
  24. pointer-events: auto;
  25. }
  26. .list-resize-handle:hover {
  27. background: rgba(0, 123, 255, 0.4);
  28. box-shadow: 0 0 4px rgba(0, 123, 255, 0.3);
  29. }
  30. .list-resize-handle:active {
  31. background: rgba(0, 123, 255, 0.6);
  32. box-shadow: 0 0 6px rgba(0, 123, 255, 0.4);
  33. }
  34. /* Show resize handle only on hover */
  35. .list:hover .list-resize-handle {
  36. background: rgba(0, 0, 0, 0.1);
  37. }
  38. .list:hover .list-resize-handle:hover {
  39. background: rgba(0, 123, 255, 0.4);
  40. box-shadow: 0 0 4px rgba(0, 123, 255, 0.3);
  41. }
  42. /* Add a subtle indicator line */
  43. .list-resize-handle::before {
  44. content: '';
  45. position: absolute;
  46. top: 50%;
  47. left: 50%;
  48. transform: translate(-50%, -50%);
  49. width: 2px;
  50. height: 20px;
  51. background: rgba(0, 0, 0, 0.2);
  52. border-radius: 1px;
  53. opacity: 0;
  54. transition: opacity 0.2s ease;
  55. }
  56. .list-resize-handle:hover::before {
  57. opacity: 1;
  58. }
  59. /* Disable resize handle for collapsed lists and mobile view */
  60. .list.list-collapsed .list-resize-handle,
  61. .list.mobile-view .list-resize-handle {
  62. display: none;
  63. }
  64. /* Disable resize handle for auto-width lists */
  65. .list.list-auto-width .list-resize-handle {
  66. display: none;
  67. }
  68. /* Visual feedback during resize */
  69. .list.list-resizing {
  70. transition: none !important;
  71. box-shadow: 0 0 10px rgba(0, 123, 255, 0.3);
  72. /* Ensure the list maintains its new width during resize */
  73. flex: none !important;
  74. flex-basis: auto !important;
  75. flex-grow: 0 !important;
  76. flex-shrink: 0 !important;
  77. /* Override any conflicting layout properties */
  78. float: left !important;
  79. display: block !important;
  80. position: relative !important;
  81. /* Force width to be respected */
  82. width: var(--list-width, auto) !important;
  83. min-width: var(--list-width, auto) !important;
  84. max-width: var(--list-width, auto) !important;
  85. /* Ensure the width is applied immediately */
  86. overflow: visible !important;
  87. }
  88. body.list-resizing-active {
  89. cursor: col-resize !important;
  90. }
  91. body.list-resizing-active * {
  92. cursor: col-resize !important;
  93. }
  94. /* Ensure swimlane container doesn't interfere with list resizing */
  95. .swimlane .list.list-resizing {
  96. /* Override any swimlane flex properties */
  97. flex: none !important;
  98. flex-basis: auto !important;
  99. flex-grow: 0 !important;
  100. flex-shrink: 0 !important;
  101. /* Ensure width is respected */
  102. width: var(--list-width, auto) !important;
  103. min-width: var(--list-width, auto) !important;
  104. max-width: var(--list-width, auto) !important;
  105. }
  106. /* More aggressive override for any container that might interfere */
  107. .js-swimlane .list.list-resizing,
  108. .dragscroll .list.list-resizing,
  109. [id^="swimlane-"] .list.list-resizing {
  110. /* Force the width to be applied */
  111. width: var(--list-width, auto) !important;
  112. min-width: var(--list-width, auto) !important;
  113. max-width: var(--list-width, auto) !important;
  114. flex: none !important;
  115. flex-basis: auto !important;
  116. flex-grow: 0 !important;
  117. flex-shrink: 0 !important;
  118. float: left !important;
  119. display: block !important;
  120. }
  121. /* Ensure the width persists after resize is complete */
  122. .js-swimlane .list[style*="--list-width"],
  123. .dragscroll .list[style*="--list-width"],
  124. [id^="swimlane-"] .list[style*="--list-width"] {
  125. /* Maintain the width after resize */
  126. width: var(--list-width, auto) !important;
  127. min-width: var(--list-width, auto) !important;
  128. max-width: var(--list-width, auto) !important;
  129. flex: none !important;
  130. flex-basis: auto !important;
  131. flex-grow: 0 !important;
  132. flex-shrink: 0 !important;
  133. float: left !important;
  134. display: block !important;
  135. }
  136. /* Ensure consistent header height for all lists */
  137. .list-header {
  138. /* Maintain consistent height and padding for all lists */
  139. min-height: 2.5vh !important;
  140. height: auto !important;
  141. padding: 2.5vh 1.5vw 0.5vh !important;
  142. /* Make sure the background covers the full height */
  143. background-color: #e4e4e4 !important;
  144. border-bottom: 0.8vh solid #e4e4e4 !important;
  145. /* Use original display for consistent button positioning */
  146. display: block !important;
  147. position: relative !important;
  148. /* Prevent vertical expansion but allow normal height */
  149. overflow: hidden !important;
  150. }
  151. /* Ensure title text doesn't cause height changes for all lists */
  152. .list-header .list-header-name {
  153. /* Prevent text wrapping to maintain consistent height */
  154. white-space: nowrap !important;
  155. /* Truncate text with ellipsis if too long */
  156. text-overflow: ellipsis !important;
  157. /* Ensure proper line height */
  158. line-height: 1.2 !important;
  159. /* Ensure it doesn't overflow */
  160. overflow: hidden !important;
  161. /* Add margin to prevent overlap with buttons */
  162. margin-right: 120px !important;
  163. }
  164. /* Position drag handle at top-right corner for ALL lists */
  165. .list-header .list-header-handle {
  166. /* Position at top-right corner, aligned with title text top */
  167. position: absolute !important;
  168. top: 2.5vh !important;
  169. right: 1.5vw !important;
  170. /* Ensure it's above other elements */
  171. z-index: 15 !important;
  172. /* Remove margin since it's absolutely positioned */
  173. margin-right: 0 !important;
  174. /* Ensure proper display */
  175. display: inline-block !important;
  176. /* Ensure it's clickable and shows proper cursor */
  177. cursor: move !important;
  178. pointer-events: auto !important;
  179. /* Add some padding for better clickability */
  180. padding: 4px !important;
  181. }
  182. /* Ensure buttons maintain original positioning */
  183. .js-swimlane .list[style*="--list-width"] .list-header .list-header-plus-top,
  184. .js-swimlane .list[style*="--list-width"] .list-header .js-collapse,
  185. .js-swimlane .list[style*="--list-width"] .list-header .js-open-list-menu,
  186. .dragscroll .list[style*="--list-width"] .list-header .list-header-plus-top,
  187. .dragscroll .list[style*="--list-width"] .list-header .js-collapse,
  188. .dragscroll .list[style*="--list-width"] .list-header .js-open-list-menu,
  189. [id^="swimlane-"] .list[style*="--list-width"] .list-header .list-header-plus-top,
  190. [id^="swimlane-"] .list[style*="--list-width"] .list-header .js-collapse,
  191. [id^="swimlane-"] .list[style*="--list-width"] .list-header .js-open-list-menu {
  192. /* Use original positioning to maintain layout */
  193. position: relative !important;
  194. /* Maintain original spacing */
  195. margin-right: 15px !important;
  196. /* Ensure proper display */
  197. display: inline-block !important;
  198. }
  199. /* Ensure watch icon and card count maintain original positioning */
  200. .js-swimlane .list[style*="--list-width"] .list-header .list-header-watch-icon,
  201. .dragscroll .list[style*="--list-width"] .list-header .list-header-watch-icon,
  202. [id^="swimlane-"] .list[style*="--list-width"] .list-header .list-header-watch-icon,
  203. .js-swimlane .list[style*="--list-width"] .list-header .cardCount,
  204. .dragscroll .list[style*="--list-width"] .list-header .cardCount,
  205. [id^="swimlane-"] .list[style*="--list-width"] .list-header .cardCount {
  206. /* Use original positioning to maintain layout */
  207. position: relative !important;
  208. /* Maintain original spacing */
  209. margin-right: 15px !important;
  210. /* Ensure proper display */
  211. display: inline-block !important;
  212. }
  213. [id^="swimlane-"] .list:first-child {
  214. min-width: 2.5vw;
  215. }
  216. .list.list-auto-width {
  217. flex: 1;
  218. }
  219. .list:first-child {
  220. border-left: none;
  221. flex: none;
  222. }
  223. .card-details + .list {
  224. border-left: none;
  225. }
  226. .list.ui-sortable-helper {
  227. box-shadow: -2px 2px 8px rgba(0,0,0,0.3), 0 0 1px rgba(0,0,0,0.5);
  228. transform: rotate(4deg);
  229. cursor: grabbing;
  230. }
  231. .list.ui-sortable-helper .list-header.ui-sortable-handle {
  232. cursor: grabbing;
  233. }
  234. .list.placeholder {
  235. background-color: rgba(0,0,0,0.2);
  236. border-color: transparent;
  237. box-shadow: none;
  238. height: 15vh;
  239. }
  240. .list.list-collapsed {
  241. flex: none;
  242. min-width: 60px;
  243. max-width: 80px;
  244. width: 60px;
  245. min-height: 60vh;
  246. height: 60vh;
  247. overflow: visible;
  248. position: relative;
  249. }
  250. .list.list-collapsed .list-header {
  251. padding: 1vh 1.5vw 0.5vh;
  252. min-height: 2.5vh !important;
  253. height: auto !important;
  254. display: flex;
  255. flex-direction: column;
  256. align-items: center;
  257. justify-content: flex-start;
  258. position: relative;
  259. overflow: visible !important;
  260. width: 100%;
  261. max-width: 60px;
  262. margin: 0 auto;
  263. }
  264. .list.list-collapsed .list-header .js-collapse {
  265. margin: 0 auto 20px auto;
  266. z-index: 10;
  267. padding: 8px 12px;
  268. font-size: 12px;
  269. white-space: nowrap;
  270. display: block;
  271. width: fit-content;
  272. }
  273. .list.list-collapsed .list-header .list-rotated {
  274. width: auto !important;
  275. height: auto !important;
  276. margin: 20px 0 0 0 !important;
  277. position: relative !important;
  278. overflow: visible !important;
  279. }
  280. .list.list-collapsed .list-header .list-rotated h2.list-header-name {
  281. text-align: left;
  282. overflow: visible;
  283. white-space: nowrap;
  284. display: block !important;
  285. font-size: 12px;
  286. line-height: 1.2;
  287. color: #333;
  288. background-color: rgba(255, 255, 255, 0.95);
  289. border: 1px solid #ddd;
  290. padding: 8px 4px;
  291. border-radius: 4px;
  292. margin: 0 auto;
  293. width: 25vh;
  294. height: 60vh;
  295. position: absolute;
  296. left: 50%;
  297. top: 50%;
  298. transform: translate(calc(-50% + 50px), -50%) rotate(0deg);
  299. z-index: 10;
  300. visibility: visible !important;
  301. opacity: 1 !important;
  302. pointer-events: none;
  303. }
  304. .list.list-composer .open-list-composer,
  305. .list .list-composer .open-list-composer {
  306. color: #8c8c8c;
  307. }
  308. .list.list-composer .list-name-input,
  309. .list .list-composer .list-name-input {
  310. background: #fff;
  311. margin: -0.4vh 0 1vh;
  312. }
  313. .list-header-add {
  314. flex: 0 0 auto;
  315. padding: 1.5vh 1.5vw;
  316. position: relative;
  317. min-height: 2.5vh;
  318. }
  319. .list-header {
  320. flex: 0 0 auto;
  321. padding: 2.5vh 1.5vw 0.5vh;
  322. position: relative;
  323. min-height: 2.5vh;
  324. background-color: #e4e4e4;
  325. border-bottom: 0.8vh solid #e4e4e4;
  326. }
  327. .list-header.list-header-card-count {
  328. min-height: 4.5vh;
  329. height: auto;
  330. }
  331. .list-header.ui-sortable-handle {
  332. cursor: grab;
  333. }
  334. .list-header .list-header-left-icon {
  335. display: none;
  336. }
  337. .list-header .list-header-name {
  338. display: inline;
  339. font-size: clamp(14px, 3vw, 18px);
  340. line-height: 1.2;
  341. margin: 0;
  342. font-weight: bold;
  343. min-height: 1.2vh;
  344. min-width: 4vw;
  345. overflow: hidden;
  346. text-overflow: ellipsis;
  347. word-wrap: break-word;
  348. }
  349. .list-rotated {
  350. width: 1.3vw;
  351. height: 35vh;
  352. margin-top: -12vh;
  353. margin-left: -14vw;
  354. margin-right: 0;
  355. transform: rotate(90deg);
  356. position: relative;
  357. text-overflow: ellipsis;
  358. white-space: nowrap;
  359. }
  360. .list-header .list-header-watch-icon {
  361. padding-left: 10px;
  362. color: #a6a6a6;
  363. }
  364. .list-header .list-header-menu {
  365. float: right;
  366. }
  367. @media print {
  368. .list-header .list-header-menu,
  369. .list-header .list-header-menu-icon {
  370. display: none;
  371. }
  372. }
  373. .list-header .list-header-plus-top {
  374. color: #a6a6a6;
  375. margin-right: 15px;
  376. }
  377. .list-header .list-header-collapse-right {
  378. color: #a6a6a6;
  379. }
  380. .list-header .list-header-collapse-left {
  381. color: #a6a6a6;
  382. margin-right: 15px;
  383. }
  384. .list-header .js-collapse {
  385. color: #a6a6a6;
  386. margin-right: 15px;
  387. display: inline-block;
  388. vertical-align: middle;
  389. padding: 5px 8px;
  390. border: 1px solid #ccc;
  391. border-radius: 4px;
  392. background-color: #f5f5f5;
  393. cursor: pointer;
  394. font-size: 14px;
  395. }
  396. .list-header .js-collapse:hover {
  397. background-color: #e0e0e0;
  398. color: #333;
  399. }
  400. .list.list-collapsed .list-header .js-collapse {
  401. display: inline-block !important;
  402. visibility: visible !important;
  403. opacity: 1 !important;
  404. }
  405. /* Responsive adjustments for collapsed lists */
  406. @media (min-width: 768px) {
  407. .list.list-collapsed {
  408. min-width: 60px;
  409. max-width: 80px;
  410. width: 60px;
  411. min-height: 60vh;
  412. height: 60vh;
  413. }
  414. .list.list-collapsed .list-header {
  415. max-width: 60px;
  416. margin: 0 auto;
  417. min-height: 2.5vh !important;
  418. height: auto !important;
  419. }
  420. .list.list-collapsed .list-header .list-rotated {
  421. width: auto !important;
  422. height: auto !important;
  423. margin: 20px 0 0 0 !important;
  424. position: relative !important;
  425. }
  426. .list.list-collapsed .list-header .list-rotated h2.list-header-name {
  427. width: 15vh;
  428. font-size: 12px;
  429. height: 30px;
  430. line-height: 1.2;
  431. padding: 8px 4px;
  432. margin: 0 auto;
  433. position: absolute;
  434. left: 50%;
  435. top: 50%;
  436. transform: translate(calc(-50% + 50px), -50%) rotate(0deg);
  437. text-align: left;
  438. visibility: visible !important;
  439. opacity: 1 !important;
  440. display: block !important;
  441. background-color: rgba(255, 255, 255, 0.95);
  442. border: 1px solid #ddd;
  443. color: #333;
  444. z-index: 10;
  445. }
  446. .list.list-collapsed .list-header .js-collapse {
  447. margin: 0 auto 20px auto;
  448. }
  449. }
  450. @media (min-width: 1024px) {
  451. .list.list-collapsed {
  452. min-height: 60vh;
  453. height: 60vh;
  454. }
  455. .list.list-collapsed .list-header {
  456. min-height: 2.5vh !important;
  457. height: auto !important;
  458. }
  459. .list.list-collapsed .list-header .list-rotated {
  460. width: auto !important;
  461. height: auto !important;
  462. margin: 20px 0 0 0 !important;
  463. position: relative !important;
  464. }
  465. .list.list-collapsed .list-header .list-rotated h2.list-header-name {
  466. width: 15vh;
  467. font-size: 12px;
  468. height: 30px;
  469. line-height: 1.2;
  470. padding: 8px 4px;
  471. margin: 0 auto;
  472. position: absolute;
  473. left: 50%;
  474. top: 50%;
  475. transform: translate(calc(-50% + 50px), -50%) rotate(0deg);
  476. text-align: left;
  477. visibility: visible !important;
  478. opacity: 1 !important;
  479. display: block !important;
  480. background-color: rgba(255, 255, 255, 0.95);
  481. border: 1px solid #ddd;
  482. color: #333;
  483. z-index: 10;
  484. }
  485. .list.list-collapsed .list-header .js-collapse {
  486. margin: 0 auto 20px auto;
  487. }
  488. }
  489. @media (min-width: 1200px) {
  490. .list.list-collapsed {
  491. min-height: 60vh;
  492. height: 60vh;
  493. }
  494. .list.list-collapsed .list-header {
  495. min-height: 2.5vh !important;
  496. height: auto !important;
  497. }
  498. .list.list-collapsed .list-header .list-rotated {
  499. width: auto !important;
  500. height: auto !important;
  501. margin: 20px 0 0 0 !important;
  502. position: relative !important;
  503. }
  504. .list.list-collapsed .list-header .list-rotated h2.list-header-name {
  505. width: 15vh;
  506. font-size: 12px;
  507. height: 30px;
  508. line-height: 1.2;
  509. padding: 8px 4px;
  510. margin: 0 auto;
  511. position: absolute;
  512. left: 50%;
  513. top: 50%;
  514. transform: translate(calc(-50% + 50px), -50%) rotate(0deg);
  515. text-align: left;
  516. visibility: visible !important;
  517. opacity: 1 !important;
  518. display: block !important;
  519. background-color: rgba(255, 255, 255, 0.95);
  520. border: 1px solid #ddd;
  521. color: #333;
  522. z-index: 10;
  523. }
  524. .list.list-collapsed .list-header .js-collapse {
  525. margin: 0 auto 20px auto;
  526. }
  527. }
  528. .list-header .list-header-collapse {
  529. color: #a6a6a6;
  530. margin-right: 15px;
  531. }
  532. .list-header .highlight {
  533. color: #ce1414;
  534. }
  535. .list-header .cardCount {
  536. color: #8c8c8c;
  537. font-size: 12px;
  538. font-weight: bold;
  539. }
  540. .list-header .list-header-plus-top,
  541. .js-open-list-menu,
  542. .list-header-menu a {
  543. color: #4d4d4d;
  544. padding-left: 4px;
  545. }
  546. .js-open-list-menu {
  547. font-size: 18px;
  548. }
  549. .list-body {
  550. flex: 1 1 auto;
  551. flex-direction: column;
  552. display: flex;
  553. overflow-y: auto;
  554. padding: 5px 11px;
  555. }
  556. .list-body .minicards {
  557. flex-grow: 1;
  558. flex-shrink: 0;
  559. /** get card drag/drop working for empty swimlanes */
  560. min-height: 32px;
  561. }
  562. .list-body .minicards form {
  563. margin-bottom: 9px;
  564. }
  565. .list-body .minicards .add-controls button {
  566. min-height: 50px;
  567. }
  568. .list-body .open-minicard-composer {
  569. border-radius: 2px;
  570. color: #8c8c8c;
  571. display: block;
  572. padding: 7px 10px;
  573. position: relative;
  574. text-decoration: none;
  575. animation: fadeIn 0.3s;
  576. }
  577. @media print {
  578. .list-body .open-minicard-composer {
  579. display: none;
  580. }
  581. }
  582. .list-body .open-minicard-composer i.fa {
  583. margin-right: 7px;
  584. }
  585. .list-body .open-minicard-composer:hover {
  586. background: #fafafa;
  587. color: #222;
  588. box-shadow: 0 1px 2px rgba(0,0,0,0.2);
  589. }
  590. #js-wip-limit-edit {
  591. padding-top: 2%;
  592. }
  593. #js-wip-limit-edit p {
  594. margin-bottom: 0;
  595. }
  596. #js-wip-limit-edit input {
  597. display: inline-block;
  598. }
  599. #js-wip-limit-edit .wip-limit-value {
  600. width: 20%;
  601. margin-right: 5%;
  602. }
  603. #js-wip-limit-edit .wip-limit-error {
  604. display: none;
  605. }
  606. #js-wip-limit-edit .soft-wip-limit {
  607. margin-right: 8px;
  608. }
  609. #js-wip-limit-edit div {
  610. float: left;
  611. }
  612. #js-list-width-edit .list-width-error {
  613. display: none;
  614. }
  615. /* Mobile view styles - applied when isMiniScreen is true (iPhone, etc.) */
  616. .mini-list.mobile-view {
  617. flex: 0 0 60px;
  618. height: auto;
  619. width: 100vw;
  620. max-width: 100vw;
  621. min-width: 100vw;
  622. border-left: 0px !important;
  623. border-bottom: 1px solid #ccc;
  624. display: block !important;
  625. }
  626. .list.mobile-view {
  627. display: block !important;
  628. flex-basis: auto;
  629. width: 100vw;
  630. max-width: 100vw;
  631. min-width: 100vw;
  632. border-left: 0px !important;
  633. margin: 0 !important;
  634. padding: 0 !important;
  635. }
  636. .list.mobile-view:first-child {
  637. margin-left: 0px;
  638. }
  639. .list.mobile-view.ui-sortable-helper {
  640. flex: 0 0 60px;
  641. height: 60px;
  642. width: 100vw;
  643. max-width: 100vw;
  644. border-left: 0px !important;
  645. border-bottom: 1px solid #ccc;
  646. display: block !important;
  647. }
  648. .list.mobile-view.ui-sortable-helper .list-header.ui-sortable-handle {
  649. cursor: grabbing;
  650. }
  651. .list.mobile-view.placeholder {
  652. flex: 0 0 60px;
  653. height: 60px;
  654. width: 100vw;
  655. max-width: 100vw;
  656. border-left: 0px !important;
  657. border-bottom: 1px solid #ccc;
  658. display: block !important;
  659. }
  660. .list.mobile-view .list-body {
  661. padding: 15px 19px;
  662. width: 100vw;
  663. max-width: 100vw;
  664. min-width: 100vw;
  665. }
  666. .list.mobile-view .list-header {
  667. /*Updated padding values for mobile devices, this should fix text grouping issue*/
  668. padding: 20px 0px 20px 0px;
  669. border-bottom: 0px solid #e4e4e4;
  670. min-height: 30px;
  671. margin-top: 10px;
  672. align-items: center;
  673. width: 100vw;
  674. max-width: 100vw;
  675. min-width: 100vw;
  676. /* Force grid layout for iPhone */
  677. display: grid !important;
  678. grid-template-columns: 30px 1fr auto auto !important;
  679. gap: 10px !important;
  680. }
  681. .list.mobile-view .list-header .list-header-left-icon {
  682. padding: 7px;
  683. padding-right: 27px;
  684. margin-top: 1px;
  685. top: -7px;
  686. left: -7px;
  687. }
  688. .list.mobile-view .list-header .list-header-menu-icon {
  689. padding: 14px;
  690. font-size: 40px !important;
  691. text-align: center;
  692. /* Force positioning for iPhone */
  693. position: absolute !important;
  694. right: 60px !important;
  695. top: 50% !important;
  696. transform: translateY(-50%) !important;
  697. z-index: 10;
  698. }
  699. .list.mobile-view .list-header .list-header-handle {
  700. padding: 14px;
  701. font-size: 48px !important;
  702. text-align: center;
  703. /* Force positioning for iPhone */
  704. position: absolute !important;
  705. right: 10px !important;
  706. top: 50% !important;
  707. transform: translateY(-50%) !important;
  708. z-index: 10;
  709. }
  710. .list.mobile-view .list-header .list-header-left-icon {
  711. display: grid;
  712. grid-row: 1/3;
  713. grid-column: 1;
  714. }
  715. .list.mobile-view .list-header .list-header-name {
  716. grid-row: 1;
  717. grid-column: 2;
  718. align-self: end;
  719. font-size: 20px !important;
  720. font-weight: bold;
  721. line-height: 1.2;
  722. padding-bottom: 2px;
  723. }
  724. .list.mobile-view .list-header .cardCount {
  725. grid-row: 2;
  726. grid-column: 2;
  727. align-self: start;
  728. font-size: 16px !important;
  729. line-height: 1.2;
  730. }
  731. .list.mobile-view .list-header .list-header-menu {
  732. grid-row: 1/3;
  733. grid-column: 3;
  734. }
  735. .list.mobile-view .list-header .list-header-menu-icon {
  736. grid-row: 1/3;
  737. grid-column: 3;
  738. }
  739. .list.mobile-view .list-header .list-header-handle {
  740. grid-row: 1/3;
  741. grid-column: 4;
  742. }
  743. .list.mobile-view .list-header .inlined-form {
  744. grid-row: 1/3;
  745. grid-column: 1/4;
  746. }
  747. .list.mobile-view .list-header .edit-controls {
  748. align-items: initial;
  749. }
  750. @media screen and (max-width: 800px),
  751. screen and (max-device-width: 932px) and (-webkit-min-device-pixel-ratio: 3) {
  752. .mini-list {
  753. flex: 0 0 60px;
  754. height: auto;
  755. width: 100vw;
  756. max-width: 100vw;
  757. min-width: 100vw;
  758. border-left: 0px !important;
  759. border-bottom: 1px solid #ccc;
  760. display: block !important;
  761. }
  762. .list {
  763. display: block !important;
  764. flex-basis: auto;
  765. width: 100vw;
  766. max-width: 100vw;
  767. min-width: 100vw;
  768. border-left: 0px !important;
  769. margin: 0 !important;
  770. padding: 0 !important;
  771. }
  772. .list:first-child {
  773. margin-left: 0px;
  774. }
  775. .list.ui-sortable-helper {
  776. flex: 0 0 60px;
  777. height: 60px;
  778. width: 100vw;
  779. max-width: 100vw;
  780. border-left: 0px !important;
  781. border-bottom: 1px solid #ccc;
  782. display: block !important;
  783. }
  784. .list.ui-sortable-helper .list-header.ui-sortable-handle {
  785. cursor: grabbing;
  786. }
  787. .list.placeholder {
  788. flex: 0 0 60px;
  789. height: 60px;
  790. width: 100vw;
  791. max-width: 100vw;
  792. border-left: 0px !important;
  793. border-bottom: 1px solid #ccc;
  794. display: block !important;
  795. }
  796. .list-body {
  797. padding: 15px 19px;
  798. width: 100vw;
  799. max-width: 100vw;
  800. min-width: 100vw;
  801. }
  802. .list-header {
  803. /*Updated padding values for mobile devices, this should fix text grouping issue*/
  804. padding: 20px 0px 20px 0px;
  805. border-bottom: 0px solid #e4e4e4;
  806. min-height: 30px;
  807. margin-top: 10px;
  808. align-items: center;
  809. width: 100vw;
  810. max-width: 100vw;
  811. min-width: 100vw;
  812. }
  813. .list-header .list-header-left-icon {
  814. padding: 7px;
  815. padding-right: 27px;
  816. margin-top: 1px;
  817. top: -7px;
  818. left: -7px;
  819. }
  820. .list-header .list-header-menu-icon {
  821. padding: 14px;
  822. font-size: 40px;
  823. text-align: center;
  824. /* iOS Safari fallback positioning */
  825. position: absolute;
  826. right: 60px;
  827. top: 50%;
  828. transform: translateY(-50%);
  829. }
  830. .list-header .list-header-handle {
  831. padding: 14px;
  832. font-size: 48px;
  833. text-align: center;
  834. /* iOS Safari fallback positioning */
  835. position: absolute;
  836. right: 10px;
  837. top: 50%;
  838. transform: translateY(-50%);
  839. }
  840. .list-header {
  841. display: grid;
  842. grid-template-columns: 30px 1fr auto auto;
  843. gap: 10px;
  844. }
  845. .list-header .list-header-left-icon {
  846. display: grid;
  847. grid-row: 1/3;
  848. grid-column: 1;
  849. }
  850. .list-header .list-header-name {
  851. grid-row: 1;
  852. grid-column: 2;
  853. align-self: end;
  854. font-size: 20px;
  855. font-weight: bold;
  856. line-height: 1.2;
  857. padding-bottom: 2px;
  858. }
  859. .list-header .cardCount {
  860. grid-row: 2;
  861. grid-column: 2;
  862. align-self: start;
  863. font-size: 16px;
  864. line-height: 1.2;
  865. }
  866. .list-header .list-header-menu {
  867. grid-row: 1/3;
  868. grid-column: 3;
  869. }
  870. .list-header .list-header-menu-icon {
  871. grid-row: 1/3;
  872. grid-column: 3;
  873. }
  874. .list-header .list-header-handle {
  875. grid-row: 1/3;
  876. grid-column: 4;
  877. }
  878. .list-header .inlined-form {
  879. grid-row: 1/3;
  880. grid-column: 1/4;
  881. }
  882. .list-header .edit-controls {
  883. align-items: initial;
  884. }
  885. }
  886. /* iPhone 12 Mini specific - fix icon positioning in stacked lists view */
  887. @media screen and (device-width: 375px) and (device-height: 812px), /* iPhone 12 Mini exact */
  888. screen and (max-width: 375px) and (max-height: 812px), /* iPhone 12 Mini viewport */
  889. screen and (-webkit-min-device-pixel-ratio: 3) and (max-width: 375px) /* iPhone 12 Mini Retina */ {
  890. .list.mobile-view .list-header {
  891. /* Force grid layout for iPhone 12 Mini */
  892. display: grid !important;
  893. grid-template-columns: 30px 1fr auto auto !important;
  894. gap: 10px !important;
  895. align-items: center !important;
  896. }
  897. .list.mobile-view .list-header .list-header-menu-icon {
  898. /* Remove absolute positioning for iPhone 12 Mini */
  899. position: static !important;
  900. right: auto !important;
  901. top: auto !important;
  902. transform: none !important;
  903. /* Use grid positioning */
  904. grid-row: 1/3 !important;
  905. grid-column: 3 !important;
  906. padding: 14px !important;
  907. font-size: 40px !important;
  908. text-align: center !important;
  909. }
  910. .list.mobile-view .list-header .list-header-handle {
  911. /* Remove absolute positioning for iPhone 12 Mini */
  912. position: static !important;
  913. right: auto !important;
  914. top: auto !important;
  915. transform: none !important;
  916. /* Use grid positioning */
  917. grid-row: 1/3 !important;
  918. grid-column: 4 !important;
  919. padding: 14px !important;
  920. font-size: 48px !important;
  921. text-align: center !important;
  922. }
  923. .list.mobile-view .list-header .list-header-name {
  924. grid-row: 1 !important;
  925. grid-column: 2 !important;
  926. align-self: end !important;
  927. font-size: 20px !important;
  928. font-weight: bold !important;
  929. line-height: 1.2 !important;
  930. padding-bottom: 2px !important;
  931. }
  932. .list.mobile-view .list-header .cardCount {
  933. grid-row: 2 !important;
  934. grid-column: 2 !important;
  935. align-self: start !important;
  936. font-size: 16px !important;
  937. line-height: 1.2 !important;
  938. }
  939. .list.mobile-view .list-header .list-header-left-icon {
  940. display: grid !important;
  941. grid-row: 1/3 !important;
  942. grid-column: 1 !important;
  943. }
  944. }
  945. /* iPhone device JavaScript detection fallback - fix icon positioning */
  946. .iphone-device .list.mobile-view .list-header {
  947. /* Force grid layout for iPhone devices */
  948. display: grid !important;
  949. grid-template-columns: 30px 1fr auto auto !important;
  950. gap: 10px !important;
  951. align-items: center !important;
  952. }
  953. .iphone-device .list.mobile-view .list-header .list-header-menu-icon {
  954. /* Remove absolute positioning for iPhone devices */
  955. position: static !important;
  956. right: auto !important;
  957. top: auto !important;
  958. transform: none !important;
  959. /* Use grid positioning */
  960. grid-row: 1/3 !important;
  961. grid-column: 3 !important;
  962. padding: 14px !important;
  963. font-size: 40px !important;
  964. text-align: center !important;
  965. }
  966. .iphone-device .list.mobile-view .list-header .list-header-handle {
  967. /* Remove absolute positioning for iPhone devices */
  968. position: static !important;
  969. right: auto !important;
  970. top: auto !important;
  971. transform: none !important;
  972. /* Use grid positioning */
  973. grid-row: 1/3 !important;
  974. grid-column: 4 !important;
  975. padding: 14px !important;
  976. font-size: 48px !important;
  977. text-align: center !important;
  978. }
  979. .iphone-device .list.mobile-view .list-header .list-header-name {
  980. grid-row: 1 !important;
  981. grid-column: 2 !important;
  982. align-self: end !important;
  983. font-size: 20px !important;
  984. font-weight: bold !important;
  985. line-height: 1.2 !important;
  986. padding-bottom: 2px !important;
  987. }
  988. .iphone-device .list.mobile-view .list-header .cardCount {
  989. grid-row: 2 !important;
  990. grid-column: 2 !important;
  991. align-self: start !important;
  992. font-size: 16px !important;
  993. line-height: 1.2 !important;
  994. }
  995. .iphone-device .list.mobile-view .list-header .list-header-left-icon {
  996. display: grid !important;
  997. grid-row: 1/3 !important;
  998. grid-column: 1 !important;
  999. }
  1000. .link-board-wrapper {
  1001. display: flex;
  1002. align-items: baseline;
  1003. }
  1004. .link-board-wrapper .js-link-board {
  1005. margin-left: 15px;
  1006. }
  1007. .search-card-results {
  1008. max-height: 250px;
  1009. overflow: hidden;
  1010. }
  1011. .sk-spinner-list {
  1012. margin-top: unset !important;
  1013. }
  1014. .list-header-white {
  1015. border-bottom: 6px solid #fff;
  1016. }
  1017. .list-header-green {
  1018. border-bottom: 6px solid #3cb500;
  1019. }
  1020. .list-header-yellow {
  1021. border-bottom: 6px solid #fad900;
  1022. }
  1023. .list-header-orange {
  1024. border-bottom: 6px solid #ff9f19;
  1025. }
  1026. .list-header-red {
  1027. border-bottom: 6px solid #eb4646;
  1028. }
  1029. .list-header-purple {
  1030. border-bottom: 6px solid #a632db;
  1031. }
  1032. .list-header-blue {
  1033. border-bottom: 6px solid #0079bf;
  1034. }
  1035. .list-header-pink {
  1036. border-bottom: 6px solid #ff78cb;
  1037. }
  1038. .list-header-sky {
  1039. border-bottom: 6px solid #00c2e0;
  1040. }
  1041. .list-header-black {
  1042. border-bottom: 6px solid #4d4d4d;
  1043. }
  1044. .list-header-lime {
  1045. border-bottom: 6px solid #51e898;
  1046. }
  1047. .list-header-silver {
  1048. border-bottom: 6px solid #e4e4e4;
  1049. }
  1050. .list-header-peachpuff {
  1051. border-bottom: 6px solid #ffdab9;
  1052. }
  1053. .list-header-crimson {
  1054. border-bottom: 6px solid #dc143c;
  1055. }
  1056. .list-header-plum {
  1057. border-bottom: 6px solid #dda0dd;
  1058. }
  1059. .list-header-darkgreen {
  1060. border-bottom: 6px solid #006400;
  1061. }
  1062. .list-header-slateblue {
  1063. border-bottom: 6px solid #6a5acd;
  1064. }
  1065. .list-header-magenta {
  1066. border-bottom: 6px solid #f0f;
  1067. }
  1068. .list-header-gold {
  1069. border-bottom: 6px solid #ffd700;
  1070. }
  1071. .list-header-navy {
  1072. border-bottom: 6px solid #000080;
  1073. }
  1074. .list-header-gray {
  1075. border-bottom: 6px solid #808080;
  1076. }
  1077. .list-header-saddlebrown {
  1078. border-bottom: 6px solid #8b4513;
  1079. }
  1080. .list-header-paleturquoise {
  1081. border-bottom: 6px solid #afeeee;
  1082. }
  1083. .list-header-mistyrose {
  1084. border-bottom: 6px solid #ffe4e1;
  1085. }
  1086. .list-header-indigo {
  1087. border-bottom: 6px solid #4b0082;
  1088. }