list.css 6.8 KB

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