boardsList.css 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275
  1. @import url("../../../css/reset.css") print, screen;
  2. .board-list {
  3. margin: 0 8px;
  4. }
  5. .board-list li {
  6. float: left;
  7. width: 20%;
  8. box-sizing: border-box;
  9. position: relative;
  10. }
  11. .board-list li.placeholder:after {
  12. content: '';
  13. display: block;
  14. background: #ccc;
  15. border-radius: 3px;
  16. height: 106px;
  17. margin: 8px;
  18. }
  19. .board-list li.ui-sortable-helper {
  20. cursor: grabbing;
  21. transform: rotate(4deg);
  22. display: block !important;
  23. }
  24. .board-list li.starred .fa-star {
  25. opacity: 1;
  26. }
  27. .board-list .board-list-item {
  28. overflow: hidden;
  29. background-color: #999;
  30. color: #f6f6f6;
  31. min-height: 100px;
  32. font-size: 16px;
  33. line-height: 22px;
  34. border-radius: 3px;
  35. display: block;
  36. font-weight: 700;
  37. padding: 8px;
  38. margin: 8px;
  39. position: relative;
  40. text-decoration: none;
  41. word-wrap: break-word;
  42. }
  43. .board-list .board-list-item.template-container {
  44. border: 4px solid #fff;
  45. }
  46. .board-list .board-list-item.tile {
  47. background-size: auto;
  48. background-repeat: repeat;
  49. }
  50. .board-list .board-list-item-sub-name {
  51. color: rgba(255,255,255,0.5);
  52. display: block;
  53. font-size: 14px;
  54. font-weight: 400;
  55. line-height: 22px;
  56. }
  57. .board-list .board-list-item-desc {
  58. color: #fff;
  59. display: block;
  60. font-size: 14px;
  61. font-weight: 400;
  62. line-height: 18px;
  63. }
  64. .board-list .js-add-board {
  65. text-align: center;
  66. }
  67. .board-list .js-add-board .label {
  68. font-weight: normal;
  69. line-height: 56px;
  70. }
  71. .board-list .js-add-board :hover {
  72. background-color: #939393;
  73. }
  74. .board-list .fa-star {
  75. bottom: 0;
  76. font-size: 14px;
  77. height: 18px;
  78. line-height: 18px;
  79. opacity: 0;
  80. padding: 9px 9px;
  81. position: absolute;
  82. right: 0;
  83. top: 0;
  84. transition-duration: 0.15s;
  85. transition-property: color, font-size, background;
  86. }
  87. .board-list .fa-circle {
  88. bottom: 0;
  89. font-size: 10px;
  90. height: 10px;
  91. line-height: 10px;
  92. padding: 9px 9px;
  93. position: absolute;
  94. right: 0;
  95. transition-duration: 0.15s;
  96. transition-property: color, font-size, background;
  97. }
  98. .board-list .has-overtime-card-active {
  99. color: #eb4646 !important;
  100. }
  101. .board-list .no-overtime-card-active {
  102. color: #3cb500 !important;
  103. }
  104. .board-list .is-star-active {
  105. color: #fff;
  106. }
  107. .board-list .fa-clone {
  108. position: absolute;
  109. bottom: 0;
  110. font-size: 14px;
  111. height: 18px;
  112. line-height: 18px;
  113. opacity: 0;
  114. right: 0;
  115. padding: 9px 9px;
  116. transition-duration: 0.15s;
  117. transition-property: color, font-size, background;
  118. }
  119. .board-list .fa-archive {
  120. position: absolute;
  121. bottom: 0;
  122. font-size: 14px;
  123. height: 18px;
  124. line-height: 18px;
  125. opacity: 0;
  126. left: 0;
  127. padding: 9px 9px;
  128. transition-duration: 0.15s;
  129. transition-property: color, font-size, background;
  130. }
  131. .board-list li:hover a:hover .fa-star,
  132. .board-list li:hover a:hover .fa-clone,
  133. .board-list li:hover a:hover .fa-archive {
  134. color: #fff;
  135. }
  136. .board-list li:hover a .fa-star,
  137. .board-list li:hover a .fa-clone,
  138. .board-list li:hover a .fa-archive {
  139. color: #fff;
  140. opacity: 0.75;
  141. }
  142. .board-list li:hover a .fa-star:hover,
  143. .board-list li:hover a .fa-clone:hover,
  144. .board-list li:hover a .fa-archive:hover {
  145. font-size: 18px;
  146. opacity: 1;
  147. }
  148. .board-list li:hover a .fa-star.is-star-active,
  149. .board-list li:hover a .fa-clone.is-star-active,
  150. .board-list li:hover a .fa-archive.is-star-active {
  151. opacity: 1;
  152. }
  153. .board-backgrounds-list .board-background-select {
  154. box-sizing: border-box;
  155. display: block;
  156. float: left;
  157. width: 50%;
  158. padding-top: 12px;
  159. position: relative;
  160. z-index: 1;
  161. }
  162. .board-backgrounds-list .board-background-select:nth-child(-n + 2) {
  163. padding-top: 0;
  164. }
  165. .board-backgrounds-list .board-background-select:nth-child(2n) {
  166. padding-left: 6px;
  167. }
  168. .board-backgrounds-list .board-background-select:nth-child(2n+1) {
  169. padding-right: 6px;
  170. }
  171. .board-backgrounds-list .board-background-select .background-box {
  172. color: #fff;
  173. border-radius: 3px;
  174. background-size: cover;
  175. display: block;
  176. height: 74px;
  177. position: relative;
  178. width: 100%;
  179. cursor: pointer;
  180. display: flex;
  181. align-items: center;
  182. justify-content: center;
  183. }
  184. .board-backgrounds-list .board-background-select .background-box i.fa-check {
  185. font-size: 25px;
  186. color: #fff;
  187. }
  188. @media screen and (max-width: 800px) {
  189. .board-list {
  190. height: 100%;
  191. overflow: scroll;
  192. }
  193. .board-list li {
  194. width: 50%;
  195. }
  196. .board-list .board-list-item {
  197. overflow: hidden;
  198. height: 8rem;
  199. }
  200. .board-list .board-list-item-sub-name {
  201. position: relative;
  202. top: -100px;
  203. left: -100px;
  204. }
  205. .board-list .board-handle {
  206. position: absolute;
  207. padding: 7px;
  208. top: 50%;
  209. transform: translateY(-50%);
  210. right: 10px;
  211. font-size: 24px;
  212. }
  213. }
  214. @media screen and (max-width: 360px) {
  215. li {
  216. width: 100%;
  217. }
  218. .board-handle {
  219. position: absolute;
  220. padding: 7px;
  221. top: 50%;
  222. transform: translateY(-50%);
  223. right: 10px;
  224. font-size: 24px;
  225. }
  226. }
  227. .AllBoardTeamsOrgs {
  228. list-style-type: none;
  229. overflow: hidden;
  230. }
  231. .AllBoardTeams,
  232. .AllBoardOrgs,
  233. .AllBoardBtns {
  234. float: left;
  235. }
  236. .js-AllBoardOrgs {
  237. margin-left: 16px;
  238. }
  239. .AllBoardTeams {
  240. margin-left: 16px;
  241. }
  242. .AllBoardButtonsContainer {
  243. margin: 16px;
  244. }
  245. #filterBtn,
  246. #resetBtn {
  247. display: inline;
  248. }
  249. .js-board {
  250. display: block;
  251. }
  252. .minicard-members {
  253. padding: 6px 0 6px 8px;
  254. width: 100%;
  255. margin-bottom: 2px;
  256. margin-left: -4px;
  257. display: inline-block;
  258. }
  259. .minicard-lists {
  260. margin: 0 auto;
  261. max-width: 95%;
  262. height: 100%;
  263. }
  264. .flex {
  265. display: flex;
  266. }
  267. .flex-wrap {
  268. flex-wrap: wrap;
  269. }
  270. .flex-wrap .item {
  271. margin: 2px;
  272. padding-right: 6px;
  273. text-align: center;
  274. }