list.css 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107
  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 !important;
  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 !important;
  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 !important;
  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 !important;
  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. screen and (max-device-width: 932px) and (-webkit-min-device-pixel-ratio: 3) {
  743. .mini-list {
  744. flex: 0 0 60px;
  745. height: auto;
  746. width: 100%;
  747. min-width: 100%;
  748. border-left: 0px !important;
  749. border-bottom: 1px solid #ccc;
  750. }
  751. .list {
  752. display: contents;
  753. flex-basis: auto;
  754. width: 100%;
  755. min-width: 100%;
  756. border-left: 0px !important;
  757. }
  758. .list:first-child {
  759. margin-left: 0px;
  760. }
  761. .list.ui-sortable-helper {
  762. flex: 0 0 60px;
  763. height: 60px;
  764. width: 100%;
  765. border-left: 0px !important;
  766. border-bottom: 1px solid #ccc;
  767. }
  768. .list.ui-sortable-helper .list-header.ui-sortable-handle {
  769. cursor: grabbing;
  770. }
  771. .list.placeholder {
  772. flex: 0 0 60px;
  773. height: 60px;
  774. width: 100%;
  775. border-left: 0px !important;
  776. border-bottom: 1px solid #ccc;
  777. }
  778. .list-body {
  779. padding: 15px 19px;
  780. width: 100%;
  781. min-width: 100%;
  782. }
  783. .list-header {
  784. /*Updated padding values for mobile devices, this should fix text grouping issue*/
  785. padding: 20px 0px 20px 0px;
  786. border-bottom: 0px solid #e4e4e4;
  787. min-height: 30px;
  788. margin-top: 10px;
  789. align-items: center;
  790. width: 100%;
  791. min-width: 100%;
  792. }
  793. .list-header .list-header-left-icon {
  794. padding: 7px;
  795. padding-right: 27px;
  796. margin-top: 1px;
  797. top: -7px;
  798. left: -7px;
  799. }
  800. .list-header .list-header-menu-icon {
  801. padding: 14px;
  802. font-size: 40px;
  803. text-align: center;
  804. /* iOS Safari fallback positioning */
  805. position: absolute;
  806. right: 60px;
  807. top: 50%;
  808. transform: translateY(-50%);
  809. }
  810. .list-header .list-header-handle {
  811. padding: 14px;
  812. font-size: 48px;
  813. text-align: center;
  814. /* iOS Safari fallback positioning */
  815. position: absolute;
  816. right: 10px;
  817. top: 50%;
  818. transform: translateY(-50%);
  819. }
  820. .list-header {
  821. display: grid;
  822. grid-template-columns: 30px 1fr auto auto;
  823. gap: 10px;
  824. }
  825. .list-header .list-header-left-icon {
  826. display: grid;
  827. grid-row: 1/3;
  828. grid-column: 1;
  829. }
  830. .list-header .list-header-name {
  831. grid-row: 1;
  832. grid-column: 2;
  833. align-self: end;
  834. font-size: 20px;
  835. font-weight: bold;
  836. line-height: 1.2;
  837. padding-bottom: 2px;
  838. }
  839. .list-header .cardCount {
  840. grid-row: 2;
  841. grid-column: 2;
  842. align-self: start;
  843. font-size: 16px;
  844. line-height: 1.2;
  845. }
  846. .list-header .list-header-menu {
  847. grid-row: 1/3;
  848. grid-column: 3;
  849. }
  850. .list-header .list-header-menu-icon {
  851. grid-row: 1/3;
  852. grid-column: 3;
  853. }
  854. .list-header .list-header-handle {
  855. grid-row: 1/3;
  856. grid-column: 4;
  857. }
  858. .list-header .inlined-form {
  859. grid-row: 1/3;
  860. grid-column: 1/4;
  861. }
  862. .list-header .edit-controls {
  863. align-items: initial;
  864. }
  865. }
  866. /* iPhone 12 Mini specific - fix icon positioning in stacked lists view */
  867. @media screen and (device-width: 375px) and (device-height: 812px), /* iPhone 12 Mini exact */
  868. screen and (max-width: 375px) and (max-height: 812px), /* iPhone 12 Mini viewport */
  869. screen and (-webkit-min-device-pixel-ratio: 3) and (max-width: 375px) /* iPhone 12 Mini Retina */ {
  870. .list.mobile-view .list-header {
  871. /* Force grid layout for iPhone 12 Mini */
  872. display: grid !important;
  873. grid-template-columns: 30px 1fr auto auto !important;
  874. gap: 10px !important;
  875. align-items: center !important;
  876. }
  877. .list.mobile-view .list-header .list-header-menu-icon {
  878. /* Remove absolute positioning for iPhone 12 Mini */
  879. position: static !important;
  880. right: auto !important;
  881. top: auto !important;
  882. transform: none !important;
  883. /* Use grid positioning */
  884. grid-row: 1/3 !important;
  885. grid-column: 3 !important;
  886. padding: 14px !important;
  887. font-size: 40px !important;
  888. text-align: center !important;
  889. }
  890. .list.mobile-view .list-header .list-header-handle {
  891. /* Remove absolute positioning for iPhone 12 Mini */
  892. position: static !important;
  893. right: auto !important;
  894. top: auto !important;
  895. transform: none !important;
  896. /* Use grid positioning */
  897. grid-row: 1/3 !important;
  898. grid-column: 4 !important;
  899. padding: 14px !important;
  900. font-size: 48px !important;
  901. text-align: center !important;
  902. }
  903. .list.mobile-view .list-header .list-header-name {
  904. grid-row: 1 !important;
  905. grid-column: 2 !important;
  906. align-self: end !important;
  907. font-size: 20px !important;
  908. font-weight: bold !important;
  909. line-height: 1.2 !important;
  910. padding-bottom: 2px !important;
  911. }
  912. .list.mobile-view .list-header .cardCount {
  913. grid-row: 2 !important;
  914. grid-column: 2 !important;
  915. align-self: start !important;
  916. font-size: 16px !important;
  917. line-height: 1.2 !important;
  918. }
  919. .list.mobile-view .list-header .list-header-left-icon {
  920. display: grid !important;
  921. grid-row: 1/3 !important;
  922. grid-column: 1 !important;
  923. }
  924. }
  925. /* iPhone device JavaScript detection fallback - fix icon positioning */
  926. .iphone-device .list.mobile-view .list-header {
  927. /* Force grid layout for iPhone devices */
  928. display: grid !important;
  929. grid-template-columns: 30px 1fr auto auto !important;
  930. gap: 10px !important;
  931. align-items: center !important;
  932. }
  933. .iphone-device .list.mobile-view .list-header .list-header-menu-icon {
  934. /* Remove absolute positioning for iPhone devices */
  935. position: static !important;
  936. right: auto !important;
  937. top: auto !important;
  938. transform: none !important;
  939. /* Use grid positioning */
  940. grid-row: 1/3 !important;
  941. grid-column: 3 !important;
  942. padding: 14px !important;
  943. font-size: 40px !important;
  944. text-align: center !important;
  945. }
  946. .iphone-device .list.mobile-view .list-header .list-header-handle {
  947. /* Remove absolute positioning for iPhone devices */
  948. position: static !important;
  949. right: auto !important;
  950. top: auto !important;
  951. transform: none !important;
  952. /* Use grid positioning */
  953. grid-row: 1/3 !important;
  954. grid-column: 4 !important;
  955. padding: 14px !important;
  956. font-size: 48px !important;
  957. text-align: center !important;
  958. }
  959. .iphone-device .list.mobile-view .list-header .list-header-name {
  960. grid-row: 1 !important;
  961. grid-column: 2 !important;
  962. align-self: end !important;
  963. font-size: 20px !important;
  964. font-weight: bold !important;
  965. line-height: 1.2 !important;
  966. padding-bottom: 2px !important;
  967. }
  968. .iphone-device .list.mobile-view .list-header .cardCount {
  969. grid-row: 2 !important;
  970. grid-column: 2 !important;
  971. align-self: start !important;
  972. font-size: 16px !important;
  973. line-height: 1.2 !important;
  974. }
  975. .iphone-device .list.mobile-view .list-header .list-header-left-icon {
  976. display: grid !important;
  977. grid-row: 1/3 !important;
  978. grid-column: 1 !important;
  979. }
  980. .link-board-wrapper {
  981. display: flex;
  982. align-items: baseline;
  983. }
  984. .link-board-wrapper .js-link-board {
  985. margin-left: 15px;
  986. }
  987. .search-card-results {
  988. max-height: 250px;
  989. overflow: hidden;
  990. }
  991. .sk-spinner-list {
  992. margin-top: unset !important;
  993. }
  994. .list-header-white {
  995. border-bottom: 6px solid #fff;
  996. }
  997. .list-header-green {
  998. border-bottom: 6px solid #3cb500;
  999. }
  1000. .list-header-yellow {
  1001. border-bottom: 6px solid #fad900;
  1002. }
  1003. .list-header-orange {
  1004. border-bottom: 6px solid #ff9f19;
  1005. }
  1006. .list-header-red {
  1007. border-bottom: 6px solid #eb4646;
  1008. }
  1009. .list-header-purple {
  1010. border-bottom: 6px solid #a632db;
  1011. }
  1012. .list-header-blue {
  1013. border-bottom: 6px solid #0079bf;
  1014. }
  1015. .list-header-pink {
  1016. border-bottom: 6px solid #ff78cb;
  1017. }
  1018. .list-header-sky {
  1019. border-bottom: 6px solid #00c2e0;
  1020. }
  1021. .list-header-black {
  1022. border-bottom: 6px solid #4d4d4d;
  1023. }
  1024. .list-header-lime {
  1025. border-bottom: 6px solid #51e898;
  1026. }
  1027. .list-header-silver {
  1028. border-bottom: 6px solid #e4e4e4;
  1029. }
  1030. .list-header-peachpuff {
  1031. border-bottom: 6px solid #ffdab9;
  1032. }
  1033. .list-header-crimson {
  1034. border-bottom: 6px solid #dc143c;
  1035. }
  1036. .list-header-plum {
  1037. border-bottom: 6px solid #dda0dd;
  1038. }
  1039. .list-header-darkgreen {
  1040. border-bottom: 6px solid #006400;
  1041. }
  1042. .list-header-slateblue {
  1043. border-bottom: 6px solid #6a5acd;
  1044. }
  1045. .list-header-magenta {
  1046. border-bottom: 6px solid #f0f;
  1047. }
  1048. .list-header-gold {
  1049. border-bottom: 6px solid #ffd700;
  1050. }
  1051. .list-header-navy {
  1052. border-bottom: 6px solid #000080;
  1053. }
  1054. .list-header-gray {
  1055. border-bottom: 6px solid #808080;
  1056. }
  1057. .list-header-saddlebrown {
  1058. border-bottom: 6px solid #8b4513;
  1059. }
  1060. .list-header-paleturquoise {
  1061. border-bottom: 6px solid #afeeee;
  1062. }
  1063. .list-header-mistyrose {
  1064. border-bottom: 6px solid #ffe4e1;
  1065. }
  1066. .list-header-indigo {
  1067. border-bottom: 6px solid #4b0082;
  1068. }