list.css 27 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106
  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-rotated {
  361. }
  362. .list-header .list-header-watch-icon {
  363. padding-left: 10px;
  364. color: #a6a6a6;
  365. }
  366. .list-header .list-header-menu {
  367. float: right;
  368. }
  369. @media print {
  370. .list-header .list-header-menu,
  371. .list-header .list-header-menu-icon {
  372. display: none;
  373. }
  374. }
  375. .list-header .list-header-plus-top {
  376. color: #a6a6a6;
  377. margin-right: 15px;
  378. }
  379. .list-header .list-header-collapse-right {
  380. color: #a6a6a6;
  381. }
  382. .list-header .list-header-collapse-left {
  383. color: #a6a6a6;
  384. margin-right: 15px;
  385. }
  386. .list-header .js-collapse {
  387. color: #a6a6a6;
  388. margin-right: 15px;
  389. display: inline-block;
  390. vertical-align: middle;
  391. padding: 5px 8px;
  392. border: 1px solid #ccc;
  393. border-radius: 4px;
  394. background-color: #f5f5f5;
  395. cursor: pointer;
  396. font-size: 14px;
  397. }
  398. .list-header .js-collapse:hover {
  399. background-color: #e0e0e0;
  400. color: #333;
  401. }
  402. .list.list-collapsed .list-header .js-collapse {
  403. display: inline-block !important;
  404. visibility: visible !important;
  405. opacity: 1 !important;
  406. }
  407. /* Responsive adjustments for collapsed lists */
  408. @media (min-width: 768px) {
  409. .list.list-collapsed {
  410. min-width: 60px;
  411. max-width: 80px;
  412. width: 60px;
  413. min-height: 60vh;
  414. height: 60vh;
  415. }
  416. .list.list-collapsed .list-header {
  417. max-width: 60px;
  418. margin: 0 auto;
  419. min-height: 2.5vh !important;
  420. height: auto !important;
  421. }
  422. .list.list-collapsed .list-header .list-rotated {
  423. width: auto !important;
  424. height: auto !important;
  425. margin: 20px 0 0 0 !important;
  426. position: relative !important;
  427. }
  428. .list.list-collapsed .list-header .list-rotated h2.list-header-name {
  429. width: 15vh;
  430. font-size: 12px;
  431. height: 30px;
  432. line-height: 1.2;
  433. padding: 8px 4px;
  434. margin: 0 auto;
  435. position: absolute;
  436. left: 50%;
  437. top: 50%;
  438. transform: translate(calc(-50% + 50px), -50%) rotate(0deg);
  439. text-align: left;
  440. visibility: visible !important;
  441. opacity: 1 !important;
  442. display: block !important;
  443. background-color: rgba(255, 255, 255, 0.95);
  444. border: 1px solid #ddd;
  445. color: #333;
  446. z-index: 10;
  447. }
  448. .list.list-collapsed .list-header .js-collapse {
  449. margin: 0 auto 20px auto;
  450. }
  451. }
  452. @media (min-width: 1024px) {
  453. .list.list-collapsed {
  454. min-height: 60vh;
  455. height: 60vh;
  456. }
  457. .list.list-collapsed .list-header {
  458. min-height: 2.5vh !important;
  459. height: auto !important;
  460. }
  461. .list.list-collapsed .list-header .list-rotated {
  462. width: auto !important;
  463. height: auto !important;
  464. margin: 20px 0 0 0 !important;
  465. position: relative !important;
  466. }
  467. .list.list-collapsed .list-header .list-rotated h2.list-header-name {
  468. width: 15vh;
  469. font-size: 12px;
  470. height: 30px;
  471. line-height: 1.2;
  472. padding: 8px 4px;
  473. margin: 0 auto;
  474. position: absolute;
  475. left: 50%;
  476. top: 50%;
  477. transform: translate(calc(-50% + 50px), -50%) rotate(0deg);
  478. text-align: left;
  479. visibility: visible !important;
  480. opacity: 1 !important;
  481. display: block !important;
  482. background-color: rgba(255, 255, 255, 0.95);
  483. border: 1px solid #ddd;
  484. color: #333;
  485. z-index: 10;
  486. }
  487. .list.list-collapsed .list-header .js-collapse {
  488. margin: 0 auto 20px auto;
  489. }
  490. }
  491. @media (min-width: 1200px) {
  492. .list.list-collapsed {
  493. min-height: 60vh;
  494. height: 60vh;
  495. }
  496. .list.list-collapsed .list-header {
  497. min-height: 2.5vh !important;
  498. height: auto !important;
  499. }
  500. .list.list-collapsed .list-header .list-rotated {
  501. width: auto !important;
  502. height: auto !important;
  503. margin: 20px 0 0 0 !important;
  504. position: relative !important;
  505. }
  506. .list.list-collapsed .list-header .list-rotated h2.list-header-name {
  507. width: 15vh;
  508. font-size: 12px;
  509. height: 30px;
  510. line-height: 1.2;
  511. padding: 8px 4px;
  512. margin: 0 auto;
  513. position: absolute;
  514. left: 50%;
  515. top: 50%;
  516. transform: translate(calc(-50% + 50px), -50%) rotate(0deg);
  517. text-align: left;
  518. visibility: visible !important;
  519. opacity: 1 !important;
  520. display: block !important;
  521. background-color: rgba(255, 255, 255, 0.95);
  522. border: 1px solid #ddd;
  523. color: #333;
  524. z-index: 10;
  525. }
  526. .list.list-collapsed .list-header .js-collapse {
  527. margin: 0 auto 20px auto;
  528. }
  529. }
  530. .list-header .list-header-collapse {
  531. color: #a6a6a6;
  532. margin-right: 15px;
  533. }
  534. .list-header .highlight {
  535. color: #ce1414;
  536. }
  537. .list-header .cardCount {
  538. color: #8c8c8c;
  539. font-size: 12px;
  540. font-weight: bold;
  541. }
  542. .list-header .list-header-plus-top,
  543. .js-open-list-menu,
  544. .list-header-menu a {
  545. color: #4d4d4d;
  546. padding-left: 4px;
  547. }
  548. .js-open-list-menu {
  549. font-size: 18px;
  550. }
  551. .list-body {
  552. flex: 1 1 auto;
  553. flex-direction: column;
  554. display: flex;
  555. overflow-y: auto;
  556. padding: 5px 11px;
  557. }
  558. .list-body .minicards {
  559. flex-grow: 1;
  560. flex-shrink: 0;
  561. /** get card drag/drop working for empty swimlanes */
  562. min-height: 32px;
  563. }
  564. .list-body .minicards form {
  565. margin-bottom: 9px;
  566. }
  567. .list-body .minicards .add-controls button {
  568. min-height: 50px;
  569. }
  570. .list-body .open-minicard-composer {
  571. border-radius: 2px;
  572. color: #8c8c8c;
  573. display: block;
  574. padding: 7px 10px;
  575. position: relative;
  576. text-decoration: none;
  577. animation: fadeIn 0.3s;
  578. }
  579. @media print {
  580. .list-body .open-minicard-composer {
  581. display: none;
  582. }
  583. }
  584. .list-body .open-minicard-composer i.fa {
  585. margin-right: 7px;
  586. }
  587. .list-body .open-minicard-composer:hover {
  588. background: #fafafa;
  589. color: #222;
  590. box-shadow: 0 1px 2px rgba(0,0,0,0.2);
  591. }
  592. #js-wip-limit-edit {
  593. padding-top: 2%;
  594. }
  595. #js-wip-limit-edit p {
  596. margin-bottom: 0;
  597. }
  598. #js-wip-limit-edit input {
  599. display: inline-block;
  600. }
  601. #js-wip-limit-edit .wip-limit-value {
  602. width: 20%;
  603. margin-right: 5%;
  604. }
  605. #js-wip-limit-edit .wip-limit-error {
  606. display: none;
  607. }
  608. #js-wip-limit-edit .soft-wip-limit {
  609. margin-right: 8px;
  610. }
  611. #js-wip-limit-edit div {
  612. float: left;
  613. }
  614. #js-list-width-edit .list-width-error {
  615. display: none;
  616. }
  617. /* Mobile view styles - applied when isMiniScreen is true (iPhone, etc.) */
  618. .mini-list.mobile-view {
  619. flex: 0 0 60px;
  620. height: auto;
  621. width: 100%;
  622. min-width: 100%;
  623. border-left: 0px;
  624. border-bottom: 1px solid #ccc;
  625. }
  626. .list.mobile-view {
  627. display: contents;
  628. flex-basis: auto;
  629. width: 100%;
  630. min-width: 100%;
  631. border-left: 0px;
  632. }
  633. .list.mobile-view:first-child {
  634. margin-left: 0px;
  635. }
  636. .list.mobile-view.ui-sortable-helper {
  637. flex: 0 0 60px;
  638. height: 60px;
  639. width: 100%;
  640. border-left: 0px;
  641. border-bottom: 1px solid #ccc;
  642. }
  643. .list.mobile-view.ui-sortable-helper .list-header.ui-sortable-handle {
  644. cursor: grabbing;
  645. }
  646. .list.mobile-view.placeholder {
  647. flex: 0 0 60px;
  648. height: 60px;
  649. width: 100%;
  650. border-left: 0px;
  651. border-bottom: 1px solid #ccc;
  652. }
  653. .list.mobile-view .list-body {
  654. padding: 15px 19px;
  655. width: 100%;
  656. min-width: 100%;
  657. }
  658. .list.mobile-view .list-header {
  659. /*Updated padding values for mobile devices, this should fix text grouping issue*/
  660. padding: 20px 0px 20px 0px;
  661. border-bottom: 0px solid #e4e4e4;
  662. min-height: 30px;
  663. margin-top: 10px;
  664. align-items: center;
  665. width: 100%;
  666. min-width: 100%;
  667. /* Force grid layout for iPhone */
  668. display: grid !important;
  669. grid-template-columns: 30px 1fr auto auto !important;
  670. gap: 10px !important;
  671. }
  672. .list.mobile-view .list-header .list-header-left-icon {
  673. padding: 7px;
  674. padding-right: 27px;
  675. margin-top: 1px;
  676. top: -7px;
  677. left: -7px;
  678. }
  679. .list.mobile-view .list-header .list-header-menu-icon {
  680. padding: 14px;
  681. font-size: 40px !important;
  682. text-align: center;
  683. /* Force positioning for iPhone */
  684. position: absolute !important;
  685. right: 60px !important;
  686. top: 50% !important;
  687. transform: translateY(-50%) !important;
  688. z-index: 10;
  689. }
  690. .list.mobile-view .list-header .list-header-handle {
  691. padding: 14px;
  692. font-size: 48px !important;
  693. text-align: center;
  694. /* Force positioning for iPhone */
  695. position: absolute !important;
  696. right: 10px !important;
  697. top: 50% !important;
  698. transform: translateY(-50%) !important;
  699. z-index: 10;
  700. }
  701. .list.mobile-view .list-header .list-header-left-icon {
  702. display: grid;
  703. grid-row: 1/3;
  704. grid-column: 1;
  705. }
  706. .list.mobile-view .list-header .list-header-name {
  707. grid-row: 1;
  708. grid-column: 2;
  709. align-self: end;
  710. font-size: 20px !important;
  711. font-weight: bold;
  712. line-height: 1.2;
  713. padding-bottom: 2px;
  714. }
  715. .list.mobile-view .list-header .cardCount {
  716. grid-row: 2;
  717. grid-column: 2;
  718. align-self: start;
  719. font-size: 16px !important;
  720. line-height: 1.2;
  721. }
  722. .list.mobile-view .list-header .list-header-menu {
  723. grid-row: 1/3;
  724. grid-column: 3;
  725. }
  726. .list.mobile-view .list-header .list-header-menu-icon {
  727. grid-row: 1/3;
  728. grid-column: 3;
  729. }
  730. .list.mobile-view .list-header .list-header-handle {
  731. grid-row: 1/3;
  732. grid-column: 4;
  733. }
  734. .list.mobile-view .list-header .inlined-form {
  735. grid-row: 1/3;
  736. grid-column: 1/4;
  737. }
  738. .list.mobile-view .list-header .edit-controls {
  739. align-items: initial;
  740. }
  741. @media screen and (max-width: 800px) {
  742. .mini-list {
  743. flex: 0 0 60px;
  744. height: auto;
  745. width: 100%;
  746. min-width: 100%;
  747. border-left: 0px;
  748. border-bottom: 1px solid #ccc;
  749. }
  750. .list {
  751. display: contents;
  752. flex-basis: auto;
  753. width: 100%;
  754. min-width: 100%;
  755. border-left: 0px;
  756. }
  757. .list:first-child {
  758. margin-left: 0px;
  759. }
  760. .list.ui-sortable-helper {
  761. flex: 0 0 60px;
  762. height: 60px;
  763. width: 100%;
  764. border-left: 0px;
  765. border-bottom: 1px solid #ccc;
  766. }
  767. .list.ui-sortable-helper .list-header.ui-sortable-handle {
  768. cursor: grabbing;
  769. }
  770. .list.placeholder {
  771. flex: 0 0 60px;
  772. height: 60px;
  773. width: 100%;
  774. border-left: 0px;
  775. border-bottom: 1px solid #ccc;
  776. }
  777. .list-body {
  778. padding: 15px 19px;
  779. width: 100%;
  780. min-width: 100%;
  781. }
  782. .list-header {
  783. /*Updated padding values for mobile devices, this should fix text grouping issue*/
  784. padding: 20px 0px 20px 0px;
  785. border-bottom: 0px solid #e4e4e4;
  786. min-height: 30px;
  787. margin-top: 10px;
  788. align-items: center;
  789. width: 100%;
  790. min-width: 100%;
  791. }
  792. .list-header .list-header-left-icon {
  793. padding: 7px;
  794. padding-right: 27px;
  795. margin-top: 1px;
  796. top: -7px;
  797. left: -7px;
  798. }
  799. .list-header .list-header-menu-icon {
  800. padding: 14px;
  801. font-size: 40px;
  802. text-align: center;
  803. /* iOS Safari fallback positioning */
  804. position: absolute;
  805. right: 60px;
  806. top: 50%;
  807. transform: translateY(-50%);
  808. }
  809. .list-header .list-header-handle {
  810. padding: 14px;
  811. font-size: 48px;
  812. text-align: center;
  813. /* iOS Safari fallback positioning */
  814. position: absolute;
  815. right: 10px;
  816. top: 50%;
  817. transform: translateY(-50%);
  818. }
  819. .list-header {
  820. display: grid;
  821. grid-template-columns: 30px 1fr auto auto;
  822. gap: 10px;
  823. }
  824. .list-header .list-header-left-icon {
  825. display: grid;
  826. grid-row: 1/3;
  827. grid-column: 1;
  828. }
  829. .list-header .list-header-name {
  830. grid-row: 1;
  831. grid-column: 2;
  832. align-self: end;
  833. font-size: 20px;
  834. font-weight: bold;
  835. line-height: 1.2;
  836. padding-bottom: 2px;
  837. }
  838. .list-header .cardCount {
  839. grid-row: 2;
  840. grid-column: 2;
  841. align-self: start;
  842. font-size: 16px;
  843. line-height: 1.2;
  844. }
  845. .list-header .list-header-menu {
  846. grid-row: 1/3;
  847. grid-column: 3;
  848. }
  849. .list-header .list-header-menu-icon {
  850. grid-row: 1/3;
  851. grid-column: 3;
  852. }
  853. .list-header .list-header-handle {
  854. grid-row: 1/3;
  855. grid-column: 4;
  856. }
  857. .list-header .inlined-form {
  858. grid-row: 1/3;
  859. grid-column: 1/4;
  860. }
  861. .list-header .edit-controls {
  862. align-items: initial;
  863. }
  864. }
  865. /* iPhone 12 Mini specific - fix icon positioning in stacked lists view */
  866. @media screen and (device-width: 375px) and (device-height: 812px), /* iPhone 12 Mini exact */
  867. screen and (max-width: 375px) and (max-height: 812px), /* iPhone 12 Mini viewport */
  868. screen and (-webkit-min-device-pixel-ratio: 3) and (max-width: 375px) /* iPhone 12 Mini Retina */ {
  869. .list.mobile-view .list-header {
  870. /* Force grid layout for iPhone 12 Mini */
  871. display: grid !important;
  872. grid-template-columns: 30px 1fr auto auto !important;
  873. gap: 10px !important;
  874. align-items: center !important;
  875. }
  876. .list.mobile-view .list-header .list-header-menu-icon {
  877. /* Remove absolute positioning for iPhone 12 Mini */
  878. position: static !important;
  879. right: auto !important;
  880. top: auto !important;
  881. transform: none !important;
  882. /* Use grid positioning */
  883. grid-row: 1/3 !important;
  884. grid-column: 3 !important;
  885. padding: 14px !important;
  886. font-size: 40px !important;
  887. text-align: center !important;
  888. }
  889. .list.mobile-view .list-header .list-header-handle {
  890. /* Remove absolute positioning for iPhone 12 Mini */
  891. position: static !important;
  892. right: auto !important;
  893. top: auto !important;
  894. transform: none !important;
  895. /* Use grid positioning */
  896. grid-row: 1/3 !important;
  897. grid-column: 4 !important;
  898. padding: 14px !important;
  899. font-size: 48px !important;
  900. text-align: center !important;
  901. }
  902. .list.mobile-view .list-header .list-header-name {
  903. grid-row: 1 !important;
  904. grid-column: 2 !important;
  905. align-self: end !important;
  906. font-size: 20px !important;
  907. font-weight: bold !important;
  908. line-height: 1.2 !important;
  909. padding-bottom: 2px !important;
  910. }
  911. .list.mobile-view .list-header .cardCount {
  912. grid-row: 2 !important;
  913. grid-column: 2 !important;
  914. align-self: start !important;
  915. font-size: 16px !important;
  916. line-height: 1.2 !important;
  917. }
  918. .list.mobile-view .list-header .list-header-left-icon {
  919. display: grid !important;
  920. grid-row: 1/3 !important;
  921. grid-column: 1 !important;
  922. }
  923. }
  924. /* iPhone device JavaScript detection fallback - fix icon positioning */
  925. .iphone-device .list.mobile-view .list-header {
  926. /* Force grid layout for iPhone devices */
  927. display: grid !important;
  928. grid-template-columns: 30px 1fr auto auto !important;
  929. gap: 10px !important;
  930. align-items: center !important;
  931. }
  932. .iphone-device .list.mobile-view .list-header .list-header-menu-icon {
  933. /* Remove absolute positioning for iPhone devices */
  934. position: static !important;
  935. right: auto !important;
  936. top: auto !important;
  937. transform: none !important;
  938. /* Use grid positioning */
  939. grid-row: 1/3 !important;
  940. grid-column: 3 !important;
  941. padding: 14px !important;
  942. font-size: 40px !important;
  943. text-align: center !important;
  944. }
  945. .iphone-device .list.mobile-view .list-header .list-header-handle {
  946. /* Remove absolute positioning for iPhone devices */
  947. position: static !important;
  948. right: auto !important;
  949. top: auto !important;
  950. transform: none !important;
  951. /* Use grid positioning */
  952. grid-row: 1/3 !important;
  953. grid-column: 4 !important;
  954. padding: 14px !important;
  955. font-size: 48px !important;
  956. text-align: center !important;
  957. }
  958. .iphone-device .list.mobile-view .list-header .list-header-name {
  959. grid-row: 1 !important;
  960. grid-column: 2 !important;
  961. align-self: end !important;
  962. font-size: 20px !important;
  963. font-weight: bold !important;
  964. line-height: 1.2 !important;
  965. padding-bottom: 2px !important;
  966. }
  967. .iphone-device .list.mobile-view .list-header .cardCount {
  968. grid-row: 2 !important;
  969. grid-column: 2 !important;
  970. align-self: start !important;
  971. font-size: 16px !important;
  972. line-height: 1.2 !important;
  973. }
  974. .iphone-device .list.mobile-view .list-header .list-header-left-icon {
  975. display: grid !important;
  976. grid-row: 1/3 !important;
  977. grid-column: 1 !important;
  978. }
  979. .link-board-wrapper {
  980. display: flex;
  981. align-items: baseline;
  982. }
  983. .link-board-wrapper .js-link-board {
  984. margin-left: 15px;
  985. }
  986. .search-card-results {
  987. max-height: 250px;
  988. overflow: hidden;
  989. }
  990. .sk-spinner-list {
  991. margin-top: unset !important;
  992. }
  993. .list-header-white {
  994. border-bottom: 6px solid #fff;
  995. }
  996. .list-header-green {
  997. border-bottom: 6px solid #3cb500;
  998. }
  999. .list-header-yellow {
  1000. border-bottom: 6px solid #fad900;
  1001. }
  1002. .list-header-orange {
  1003. border-bottom: 6px solid #ff9f19;
  1004. }
  1005. .list-header-red {
  1006. border-bottom: 6px solid #eb4646;
  1007. }
  1008. .list-header-purple {
  1009. border-bottom: 6px solid #a632db;
  1010. }
  1011. .list-header-blue {
  1012. border-bottom: 6px solid #0079bf;
  1013. }
  1014. .list-header-pink {
  1015. border-bottom: 6px solid #ff78cb;
  1016. }
  1017. .list-header-sky {
  1018. border-bottom: 6px solid #00c2e0;
  1019. }
  1020. .list-header-black {
  1021. border-bottom: 6px solid #4d4d4d;
  1022. }
  1023. .list-header-lime {
  1024. border-bottom: 6px solid #51e898;
  1025. }
  1026. .list-header-silver {
  1027. border-bottom: 6px solid #e4e4e4;
  1028. }
  1029. .list-header-peachpuff {
  1030. border-bottom: 6px solid #ffdab9;
  1031. }
  1032. .list-header-crimson {
  1033. border-bottom: 6px solid #dc143c;
  1034. }
  1035. .list-header-plum {
  1036. border-bottom: 6px solid #dda0dd;
  1037. }
  1038. .list-header-darkgreen {
  1039. border-bottom: 6px solid #006400;
  1040. }
  1041. .list-header-slateblue {
  1042. border-bottom: 6px solid #6a5acd;
  1043. }
  1044. .list-header-magenta {
  1045. border-bottom: 6px solid #f0f;
  1046. }
  1047. .list-header-gold {
  1048. border-bottom: 6px solid #ffd700;
  1049. }
  1050. .list-header-navy {
  1051. border-bottom: 6px solid #000080;
  1052. }
  1053. .list-header-gray {
  1054. border-bottom: 6px solid #808080;
  1055. }
  1056. .list-header-saddlebrown {
  1057. border-bottom: 6px solid #8b4513;
  1058. }
  1059. .list-header-paleturquoise {
  1060. border-bottom: 6px solid #afeeee;
  1061. }
  1062. .list-header-mistyrose {
  1063. border-bottom: 6px solid #ffe4e1;
  1064. }
  1065. .list-header-indigo {
  1066. border-bottom: 6px solid #4b0082;
  1067. }