list.css 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345
  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. min-width: 270px;
  11. max-width: 270px;
  12. }
  13. .list:first-child {
  14. margin-left: 5px;
  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: 20px 12px 4px;
  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-header .list-header-watch-icon {
  80. padding-left: 10px;
  81. color: #a6a6a6;
  82. }
  83. .list-header .list-header-menu {
  84. float: right;
  85. }
  86. .list-header .list-header-plus-top {
  87. color: #a6a6a6;
  88. margin-right: 15px;
  89. }
  90. .list-header .highlight {
  91. color: #ce1414;
  92. }
  93. .list-header .cardCount {
  94. color: #8c8c8c;
  95. font-size: 12px;
  96. font-weight: bold;
  97. }
  98. .list-header .list-header-plus-top,
  99. .js-open-list-menu,
  100. .list-header-menu a {
  101. color: #4d4d4d;
  102. padding-left: 4px;
  103. }
  104. .list-body {
  105. flex: 1 1 auto;
  106. flex-direction: column;
  107. display: flex;
  108. overflow-y: auto;
  109. padding: 5px 11px;
  110. }
  111. .list-body .minicards {
  112. flex-grow: 1;
  113. flex-shrink: 0;
  114. }
  115. .list-body .minicards form {
  116. margin-bottom: 9px;
  117. }
  118. .list-body .open-minicard-composer {
  119. border-radius: 2px;
  120. color: #8c8c8c;
  121. display: block;
  122. padding: 7px 10px;
  123. position: relative;
  124. text-decoration: none;
  125. animation: fadeIn 0.3s;
  126. }
  127. .list-body .open-minicard-composer i.fa {
  128. margin-right: 7px;
  129. }
  130. .list-body .open-minicard-composer:hover {
  131. background: #fafafa;
  132. color: #222;
  133. box-shadow: 0 1px 2px rgba(0,0,0,0.2);
  134. }
  135. #js-wip-limit-edit {
  136. padding-top: 2%;
  137. }
  138. #js-wip-limit-edit p {
  139. margin-bottom: 0;
  140. }
  141. #js-wip-limit-edit input {
  142. display: inline-block;
  143. }
  144. #js-wip-limit-edit .wip-limit-value {
  145. width: 20%;
  146. margin-right: 5%;
  147. }
  148. #js-wip-limit-edit .wip-limit-error {
  149. display: none;
  150. }
  151. #js-wip-limit-edit .soft-wip-limit {
  152. margin-right: 8px;
  153. }
  154. #js-wip-limit-edit div {
  155. float: left;
  156. }
  157. @media screen and (max-width: 800px) {
  158. .mini-list {
  159. flex: 0 0 60px;
  160. height: auto;
  161. width: 100%;
  162. border-left: 0px;
  163. border-bottom: 1px solid #ccc;
  164. }
  165. .list {
  166. display: contents;
  167. flex-basis: auto;
  168. width: 100%;
  169. border-left: 0px;
  170. }
  171. .list:first-child {
  172. margin-left: 0px;
  173. }
  174. .list.ui-sortable-helper {
  175. flex: 0 0 60px;
  176. height: 60px;
  177. width: 100%;
  178. border-left: 0px;
  179. border-bottom: 1px solid #ccc;
  180. }
  181. .list.ui-sortable-helper .list-header.ui-sortable-handle {
  182. cursor: grabbing;
  183. }
  184. .list.placeholder {
  185. flex: 0 0 60px;
  186. height: 60px;
  187. width: 100%;
  188. border-left: 0px;
  189. border-bottom: 1px solid #ccc;
  190. }
  191. .list-body {
  192. padding: 15px 19px;
  193. }
  194. .list-header {
  195. padding: 0 12px 0px;
  196. border-bottom: 0px solid #e4e4e4;
  197. height: 60px;
  198. margin-top: 10px;
  199. display: flex;
  200. align-items: center;
  201. }
  202. .list-header .list-header-left-icon {
  203. padding: 7px;
  204. padding-right: 27px;
  205. margin-top: 1px;
  206. top: -7px;
  207. left: -7px;
  208. }
  209. .list-header .list-header-menu-icon {
  210. position: absolute;
  211. padding: 7px;
  212. top: 50%;
  213. transform: translateY(-50%);
  214. right: 47px;
  215. font-size: 20px;
  216. }
  217. .list-header .list-header-handle {
  218. position: absolute;
  219. padding: 7px;
  220. top: 50%;
  221. transform: translateY(-50%);
  222. right: 10px;
  223. font-size: 24px;
  224. }
  225. .list-header {
  226. display: grid;
  227. grid-template-columns: 30px 5fr 1fr;
  228. }
  229. .list-header .list-header-left-icon {
  230. display: grid;
  231. grid-row: 1/3;
  232. grid-column: 1;
  233. }
  234. .list-header .list-header-name {
  235. grid-row: 1;
  236. grid-column: 2;
  237. align-self: end;
  238. }
  239. .list-header .cardCount {
  240. grid-row: 2;
  241. grid-column: 2;
  242. align-self: start;
  243. }
  244. .list-header .list-header-menu {
  245. grid-row: 1/3;
  246. grid-column: 3;
  247. }
  248. .list-header .inlined-form {
  249. grid-row: 1/3;
  250. grid-column: 1/4;
  251. }
  252. .list-header .edit-controls {
  253. align-items: initial;
  254. }
  255. }
  256. .link-board-wrapper {
  257. display: flex;
  258. align-items: baseline;
  259. }
  260. .link-board-wrapper .js-link-board {
  261. margin-left: 15px;
  262. }
  263. .search-card-results {
  264. max-height: 250px;
  265. overflow: hidden;
  266. }
  267. .sk-spinner-list {
  268. margin-top: unset !important;
  269. }
  270. .list-header-white {
  271. border-bottom: 6px solid #fff;
  272. border: 1px solid #eee;
  273. }
  274. .list-header-green {
  275. border-bottom: 6px solid #3cb500;
  276. }
  277. .list-header-yellow {
  278. border-bottom: 6px solid #fad900;
  279. }
  280. .list-header-orange {
  281. border-bottom: 6px solid #ff9f19;
  282. }
  283. .list-header-red {
  284. border-bottom: 6px solid #eb4646;
  285. }
  286. .list-header-purple {
  287. border-bottom: 6px solid #a632db;
  288. }
  289. .list-header-blue {
  290. border-bottom: 6px solid #0079bf;
  291. }
  292. .list-header-pink {
  293. border-bottom: 6px solid #ff78cb;
  294. }
  295. .list-header-sky {
  296. border-bottom: 6px solid #00c2e0;
  297. }
  298. .list-header-black {
  299. border-bottom: 6px solid #4d4d4d;
  300. }
  301. .list-header-lime {
  302. border-bottom: 6px solid #51e898;
  303. }
  304. .list-header-silver {
  305. border-bottom: 6px solid unset;
  306. }
  307. .list-header-peachpuff {
  308. border-bottom: 6px solid #ffdab9;
  309. }
  310. .list-header-crimson {
  311. border-bottom: 6px solid #dc143c;
  312. }
  313. .list-header-plum {
  314. border-bottom: 6px solid #dda0dd;
  315. }
  316. .list-header-darkgreen {
  317. border-bottom: 6px solid #006400;
  318. }
  319. .list-header-slateblue {
  320. border-bottom: 6px solid #6a5acd;
  321. }
  322. .list-header-magenta {
  323. border-bottom: 6px solid #f0f;
  324. }
  325. .list-header-gold {
  326. border-bottom: 6px solid #ffd700;
  327. }
  328. .list-header-navy {
  329. border-bottom: 6px solid #000080;
  330. }
  331. .list-header-gray {
  332. border-bottom: 6px solid #808080;
  333. }
  334. .list-header-saddlebrown {
  335. border-bottom: 6px solid #8b4513;
  336. }
  337. .list-header-paleturquoise {
  338. border-bottom: 6px solid #afeeee;
  339. }
  340. .list-header-mistyrose {
  341. border-bottom: 6px solid #ffe4e1;
  342. }
  343. .list-header-indigo {
  344. border-bottom: 6px solid #4b0082;
  345. }