list.css 7.7 KB

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