list.css 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402
  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. flex: 1;
  11. }
  12. [id^="swimlane-"] .list:first-child {
  13. min-width: 20px;
  14. }
  15. .list:first-child {
  16. border-left: none;
  17. flex: none;
  18. }
  19. .card-details + .list {
  20. border-left: none;
  21. }
  22. .list.ui-sortable-helper {
  23. box-shadow: -2px 2px 8px rgba(0,0,0,0.3), 0 0 1px rgba(0,0,0,0.5);
  24. transform: rotate(4deg);
  25. cursor: grabbing;
  26. }
  27. .list.ui-sortable-helper .list-header.ui-sortable-handle {
  28. cursor: grabbing;
  29. }
  30. .list.placeholder {
  31. background-color: rgba(0,0,0,0.2);
  32. border-color: transparent;
  33. box-shadow: none;
  34. height: 100px;
  35. }
  36. .list.list-collapsed {
  37. flex: none;
  38. }
  39. .list.list-composer .open-list-composer,
  40. .list .list-composer .open-list-composer {
  41. color: #8c8c8c;
  42. }
  43. .list.list-composer .list-name-input,
  44. .list .list-composer .list-name-input {
  45. background: #fff;
  46. margin: -3px 0 8px;
  47. }
  48. .list-header-add {
  49. flex: 0 0 auto;
  50. padding: 12px;
  51. position: relative;
  52. min-height: 20px;
  53. }
  54. .list-header {
  55. flex: 0 0 auto;
  56. padding: 20px 12px 4px;
  57. position: relative;
  58. min-height: 20px;
  59. background-color: #e4e4e4;
  60. border-bottom: 6px solid #e4e4e4;
  61. }
  62. .list-header.list-header-card-count {
  63. min-height: 35px;
  64. height: auto;
  65. }
  66. .list-header.ui-sortable-handle {
  67. cursor: grab;
  68. }
  69. .list-header .list-header-left-icon {
  70. display: none;
  71. }
  72. .list-header .list-header-name {
  73. display: inline;
  74. font-size: 16px;
  75. line-height: 17px;
  76. margin: 0;
  77. font-weight: bold;
  78. min-height: 9px;
  79. min-width: 30px;
  80. overflow: hidden;
  81. text-overflow: ellipsis;
  82. word-wrap: break-word;
  83. }
  84. .list-rotated {
  85. width: 10px;
  86. height: 250px;
  87. margin-top: -90px;
  88. margin-left: -110px;
  89. margin-right: 0;
  90. transform: rotate(90deg);
  91. position: relative;
  92. text-overflow: ellipsis;
  93. white-space: nowrap;
  94. }
  95. .list-header .list-rotated {
  96. }
  97. .list-header .list-header-watch-icon {
  98. padding-left: 10px;
  99. color: #a6a6a6;
  100. }
  101. .list-header .list-header-menu {
  102. float: right;
  103. }
  104. @media print {
  105. .list-header .list-header-menu,
  106. .list-header .list-header-menu-icon {
  107. display: none;
  108. }
  109. }
  110. .list-header .list-header-plus-top {
  111. color: #a6a6a6;
  112. margin-right: 15px;
  113. }
  114. .list-header .list-header-collapse-right {
  115. color: #a6a6a6;
  116. }
  117. .list-header .list-header-collapse-left {
  118. color: #a6a6a6;
  119. margin-right: 15px;
  120. }
  121. .list-header .list-header-uncollapse-left {
  122. color: #a6a6a6;
  123. }
  124. .list-header .list-header-uncollapse-right {
  125. color: #a6a6a6;
  126. }
  127. .list-header .list-header-collapse {
  128. color: #a6a6a6;
  129. margin-right: 15px;
  130. }
  131. .list-header .highlight {
  132. color: #ce1414;
  133. }
  134. .list-header .cardCount {
  135. color: #8c8c8c;
  136. font-size: 12px;
  137. font-weight: bold;
  138. }
  139. .list-header .list-header-plus-top,
  140. .js-open-list-menu,
  141. .list-header-menu a {
  142. color: #4d4d4d;
  143. padding-left: 4px;
  144. }
  145. .js-open-list-menu {
  146. font-size: 18px;
  147. }
  148. .list-body {
  149. flex: 1 1 auto;
  150. flex-direction: column;
  151. display: flex;
  152. overflow-y: auto;
  153. padding: 5px 11px;
  154. }
  155. .list-body .minicards {
  156. flex-grow: 1;
  157. flex-shrink: 0;
  158. /** get card drag/drop working for empty swimlanes */
  159. min-height: 32px;
  160. }
  161. .list-body .minicards form {
  162. margin-bottom: 9px;
  163. }
  164. .list-body .minicards .add-controls button {
  165. min-height: 50px;
  166. }
  167. .list-body .open-minicard-composer {
  168. border-radius: 2px;
  169. color: #8c8c8c;
  170. display: block;
  171. padding: 7px 10px;
  172. position: relative;
  173. text-decoration: none;
  174. animation: fadeIn 0.3s;
  175. }
  176. @media print {
  177. .list-body .open-minicard-composer {
  178. display: none;
  179. }
  180. }
  181. .list-body .open-minicard-composer i.fa {
  182. margin-right: 7px;
  183. }
  184. .list-body .open-minicard-composer:hover {
  185. background: #fafafa;
  186. color: #222;
  187. box-shadow: 0 1px 2px rgba(0,0,0,0.2);
  188. }
  189. #js-wip-limit-edit {
  190. padding-top: 2%;
  191. }
  192. #js-wip-limit-edit p {
  193. margin-bottom: 0;
  194. }
  195. #js-wip-limit-edit input {
  196. display: inline-block;
  197. }
  198. #js-wip-limit-edit .wip-limit-value {
  199. width: 20%;
  200. margin-right: 5%;
  201. }
  202. #js-wip-limit-edit .wip-limit-error {
  203. display: none;
  204. }
  205. #js-wip-limit-edit .soft-wip-limit {
  206. margin-right: 8px;
  207. }
  208. #js-wip-limit-edit div {
  209. float: left;
  210. }
  211. #js-list-width-edit .list-width-error {
  212. display: none;
  213. }
  214. @media screen and (max-width: 800px) {
  215. .mini-list {
  216. flex: 0 0 60px;
  217. height: auto;
  218. width: 100%;
  219. border-left: 0px;
  220. border-bottom: 1px solid #ccc;
  221. }
  222. .list {
  223. display: contents;
  224. flex-basis: auto;
  225. width: 100%;
  226. border-left: 0px;
  227. }
  228. .list:first-child {
  229. margin-left: 0px;
  230. }
  231. .list.ui-sortable-helper {
  232. flex: 0 0 60px;
  233. height: 60px;
  234. width: 100%;
  235. border-left: 0px;
  236. border-bottom: 1px solid #ccc;
  237. }
  238. .list.ui-sortable-helper .list-header.ui-sortable-handle {
  239. cursor: grabbing;
  240. }
  241. .list.placeholder {
  242. flex: 0 0 60px;
  243. height: 60px;
  244. width: 100%;
  245. border-left: 0px;
  246. border-bottom: 1px solid #ccc;
  247. }
  248. .list-body {
  249. padding: 15px 19px;
  250. }
  251. .list-header {
  252. /*Updated padding values for mobile devices, this should fix text grouping issue*/
  253. padding: 20px 0px 20px 0px;
  254. border-bottom: 0px solid #e4e4e4;
  255. min-height: 30px;
  256. margin-top: 10px;
  257. align-items: center;
  258. }
  259. .list-header .list-header-left-icon {
  260. padding: 7px;
  261. padding-right: 27px;
  262. margin-top: 1px;
  263. top: -7px;
  264. left: -7px;
  265. }
  266. .list-header .list-header-menu-icon {
  267. position: absolute;
  268. padding: 7px;
  269. top: 50%;
  270. transform: translateY(-50%);
  271. right: 47px;
  272. font-size: 20px;
  273. }
  274. .list-header .list-header-handle {
  275. position: absolute;
  276. padding: 7px;
  277. top: 50%;
  278. transform: translateY(-50%);
  279. right: 10px;
  280. font-size: 24px;
  281. }
  282. .list-header {
  283. display: grid;
  284. grid-template-columns: 30px 5fr 1fr;
  285. }
  286. .list-header .list-header-left-icon {
  287. display: grid;
  288. grid-row: 1/3;
  289. grid-column: 1;
  290. }
  291. .list-header .list-header-name {
  292. grid-row: 1;
  293. grid-column: 2;
  294. align-self: end;
  295. }
  296. .list-header .cardCount {
  297. grid-row: 2;
  298. grid-column: 2;
  299. align-self: start;
  300. }
  301. .list-header .list-header-menu {
  302. grid-row: 1/3;
  303. grid-column: 3;
  304. }
  305. .list-header .inlined-form {
  306. grid-row: 1/3;
  307. grid-column: 1/4;
  308. }
  309. .list-header .edit-controls {
  310. align-items: initial;
  311. }
  312. }
  313. .link-board-wrapper {
  314. display: flex;
  315. align-items: baseline;
  316. }
  317. .link-board-wrapper .js-link-board {
  318. margin-left: 15px;
  319. }
  320. .search-card-results {
  321. max-height: 250px;
  322. overflow: hidden;
  323. }
  324. .sk-spinner-list {
  325. margin-top: unset !important;
  326. }
  327. .list-header-white {
  328. border-bottom: 6px solid #fff;
  329. }
  330. .list-header-green {
  331. border-bottom: 6px solid #3cb500;
  332. }
  333. .list-header-yellow {
  334. border-bottom: 6px solid #fad900;
  335. }
  336. .list-header-orange {
  337. border-bottom: 6px solid #ff9f19;
  338. }
  339. .list-header-red {
  340. border-bottom: 6px solid #eb4646;
  341. }
  342. .list-header-purple {
  343. border-bottom: 6px solid #a632db;
  344. }
  345. .list-header-blue {
  346. border-bottom: 6px solid #0079bf;
  347. }
  348. .list-header-pink {
  349. border-bottom: 6px solid #ff78cb;
  350. }
  351. .list-header-sky {
  352. border-bottom: 6px solid #00c2e0;
  353. }
  354. .list-header-black {
  355. border-bottom: 6px solid #4d4d4d;
  356. }
  357. .list-header-lime {
  358. border-bottom: 6px solid #51e898;
  359. }
  360. .list-header-silver {
  361. border-bottom: 6px solid #e4e4e4;
  362. }
  363. .list-header-peachpuff {
  364. border-bottom: 6px solid #ffdab9;
  365. }
  366. .list-header-crimson {
  367. border-bottom: 6px solid #dc143c;
  368. }
  369. .list-header-plum {
  370. border-bottom: 6px solid #dda0dd;
  371. }
  372. .list-header-darkgreen {
  373. border-bottom: 6px solid #006400;
  374. }
  375. .list-header-slateblue {
  376. border-bottom: 6px solid #6a5acd;
  377. }
  378. .list-header-magenta {
  379. border-bottom: 6px solid #f0f;
  380. }
  381. .list-header-gold {
  382. border-bottom: 6px solid #ffd700;
  383. }
  384. .list-header-navy {
  385. border-bottom: 6px solid #000080;
  386. }
  387. .list-header-gray {
  388. border-bottom: 6px solid #808080;
  389. }
  390. .list-header-saddlebrown {
  391. border-bottom: 6px solid #8b4513;
  392. }
  393. .list-header-paleturquoise {
  394. border-bottom: 6px solid #afeeee;
  395. }
  396. .list-header-mistyrose {
  397. border-bottom: 6px solid #ffe4e1;
  398. }
  399. .list-header-indigo {
  400. border-bottom: 6px solid #4b0082;
  401. }