| 1 |
/* ── Kanban Board ────────────────────────────────────────────── */ |
| 2 |
|
| 3 |
.bkk-wrap { |
| 4 |
box-sizing: border-box; |
| 5 |
overflow-x: auto; |
| 6 |
-webkit-overflow-scrolling: touch; |
| 7 |
} |
| 8 |
|
| 9 |
.bkk-board { |
| 10 |
display: flex; |
| 11 |
flex-wrap: nowrap; |
| 12 |
gap: 16px; |
| 13 |
align-items: flex-start; |
| 14 |
min-width: 0; |
| 15 |
} |
| 16 |
|
| 17 |
@media (max-width: 640px) { |
| 18 |
.bkk-board { |
| 19 |
flex-wrap: wrap; |
| 20 |
} |
| 21 |
} |
| 22 |
|
| 23 |
.bkk-column { |
| 24 |
flex-shrink: 0; |
| 25 |
} |
| 26 |
|
| 27 |
.bkk-col-header { |
| 28 |
margin-bottom: 12px; |
| 29 |
} |
| 30 |
|
| 31 |
.bkk-col-title { |
| 32 |
font-family: var(--bkk-ct-font-family, inherit); |
| 33 |
font-size: var(--bkk-ct-font-size-d, 14px); |
| 34 |
font-weight: var(--bkk-ct-font-weight, 700); |
| 35 |
font-style: var(--bkk-ct-font-style, normal); |
| 36 |
text-decoration: var(--bkk-ct-text-decoration, none); |
| 37 |
text-transform: var(--bkk-ct-text-transform, uppercase); |
| 38 |
line-height: var(--bkk-ct-line-height-d, 1.4); |
| 39 |
letter-spacing: var(--bkk-ct-letter-spacing-d, 0.05em); |
| 40 |
word-spacing: var(--bkk-ct-word-spacing-d, normal); |
| 41 |
} |
| 42 |
|
| 43 |
.bkk-card-title { |
| 44 |
font-family: var(--bkk-cdt-font-family, inherit); |
| 45 |
font-size: var(--bkk-cdt-font-size-d, 14px); |
| 46 |
font-weight: var(--bkk-cdt-font-weight, 600); |
| 47 |
font-style: var(--bkk-cdt-font-style, normal); |
| 48 |
text-decoration: var(--bkk-cdt-text-decoration, none); |
| 49 |
text-transform: var(--bkk-cdt-text-transform, none); |
| 50 |
line-height: var(--bkk-cdt-line-height-d, 1.4); |
| 51 |
letter-spacing: var(--bkk-cdt-letter-spacing-d, normal); |
| 52 |
word-spacing: var(--bkk-cdt-word-spacing-d, normal); |
| 53 |
} |
| 54 |
|
| 55 |
.bkk-card-desc { |
| 56 |
font-family: var(--bkk-cdd-font-family, inherit); |
| 57 |
font-size: var(--bkk-cdd-font-size-d, 12px); |
| 58 |
font-weight: var(--bkk-cdd-font-weight, 400); |
| 59 |
font-style: var(--bkk-cdd-font-style, normal); |
| 60 |
text-decoration: var(--bkk-cdd-text-decoration, none); |
| 61 |
text-transform: var(--bkk-cdd-text-transform, none); |
| 62 |
line-height: var(--bkk-cdd-line-height-d, 1.5); |
| 63 |
letter-spacing: var(--bkk-cdd-letter-spacing-d, normal); |
| 64 |
word-spacing: var(--bkk-cdd-word-spacing-d, normal); |
| 65 |
} |
| 66 |
|
| 67 |
@media (max-width: 1024px) { |
| 68 |
.bkk-col-title { |
| 69 |
font-size: var(--bkk-ct-font-size-t, var(--bkk-ct-font-size-d, 14px)); |
| 70 |
line-height: var(--bkk-ct-line-height-t, var(--bkk-ct-line-height-d, 1.4)); |
| 71 |
letter-spacing: var(--bkk-ct-letter-spacing-t, var(--bkk-ct-letter-spacing-d, 0.05em)); |
| 72 |
word-spacing: var(--bkk-ct-word-spacing-t, var(--bkk-ct-word-spacing-d, normal)); |
| 73 |
} |
| 74 |
.bkk-card-title { |
| 75 |
font-size: var(--bkk-cdt-font-size-t, var(--bkk-cdt-font-size-d, 14px)); |
| 76 |
line-height: var(--bkk-cdt-line-height-t, var(--bkk-cdt-line-height-d, 1.4)); |
| 77 |
letter-spacing: var(--bkk-cdt-letter-spacing-t, var(--bkk-cdt-letter-spacing-d, normal)); |
| 78 |
word-spacing: var(--bkk-cdt-word-spacing-t, var(--bkk-cdt-word-spacing-d, normal)); |
| 79 |
} |
| 80 |
.bkk-card-desc { |
| 81 |
font-size: var(--bkk-cdd-font-size-t, var(--bkk-cdd-font-size-d, 12px)); |
| 82 |
line-height: var(--bkk-cdd-line-height-t, var(--bkk-cdd-line-height-d, 1.5)); |
| 83 |
letter-spacing: var(--bkk-cdd-letter-spacing-t, var(--bkk-cdd-letter-spacing-d, normal)); |
| 84 |
word-spacing: var(--bkk-cdd-word-spacing-t, var(--bkk-cdd-word-spacing-d, normal)); |
| 85 |
} |
| 86 |
} |
| 87 |
@media (max-width: 767px) { |
| 88 |
.bkk-col-title { |
| 89 |
font-size: var(--bkk-ct-font-size-m, var(--bkk-ct-font-size-t, var(--bkk-ct-font-size-d, 14px))); |
| 90 |
line-height: var(--bkk-ct-line-height-m, var(--bkk-ct-line-height-t, var(--bkk-ct-line-height-d, 1.4))); |
| 91 |
letter-spacing: var(--bkk-ct-letter-spacing-m, var(--bkk-ct-letter-spacing-t, var(--bkk-ct-letter-spacing-d, 0.05em))); |
| 92 |
word-spacing: var(--bkk-ct-word-spacing-m, var(--bkk-ct-word-spacing-t, var(--bkk-ct-word-spacing-d, normal))); |
| 93 |
} |
| 94 |
.bkk-card-title { |
| 95 |
font-size: var(--bkk-cdt-font-size-m, var(--bkk-cdt-font-size-t, var(--bkk-cdt-font-size-d, 14px))); |
| 96 |
line-height: var(--bkk-cdt-line-height-m, var(--bkk-cdt-line-height-t, var(--bkk-cdt-line-height-d, 1.4))); |
| 97 |
letter-spacing: var(--bkk-cdt-letter-spacing-m, var(--bkk-cdt-letter-spacing-t, var(--bkk-cdt-letter-spacing-d, normal))); |
| 98 |
word-spacing: var(--bkk-cdt-word-spacing-m, var(--bkk-cdt-word-spacing-t, var(--bkk-cdt-word-spacing-d, normal))); |
| 99 |
} |
| 100 |
.bkk-card-desc { |
| 101 |
font-size: var(--bkk-cdd-font-size-m, var(--bkk-cdd-font-size-t, var(--bkk-cdd-font-size-d, 12px))); |
| 102 |
line-height: var(--bkk-cdd-line-height-m, var(--bkk-cdd-line-height-t, var(--bkk-cdd-line-height-d, 1.5))); |
| 103 |
letter-spacing: var(--bkk-cdd-letter-spacing-m, var(--bkk-cdd-letter-spacing-t, var(--bkk-cdd-letter-spacing-d, normal))); |
| 104 |
word-spacing: var(--bkk-cdd-word-spacing-m, var(--bkk-cdd-word-spacing-t, var(--bkk-cdd-word-spacing-d, normal))); |
| 105 |
} |
| 106 |
} |
| 107 |
|
| 108 |
.bkk-cards { |
| 109 |
display: flex; |
| 110 |
flex-direction: column; |
| 111 |
gap: 0; |
| 112 |
} |
| 113 |
|
| 114 |
.bkk-card { |
| 115 |
cursor: default; |
| 116 |
word-break: break-word; |
| 117 |
} |
| 118 |
|
| 119 |
.bkk-card-header { |
| 120 |
display: flex; |
| 121 |
align-items: center; |
| 122 |
flex-wrap: wrap; |
| 123 |
gap: 4px; |
| 124 |
min-height: 18px; |
| 125 |
} |
| 126 |
|
| 127 |
.bkk-tag { |
| 128 |
display: inline-block; |
| 129 |
font-size: 11px; |
| 130 |
font-weight: 600; |
| 131 |
border-radius: 4px; |
| 132 |
padding: 2px 8px; |
| 133 |
white-space: nowrap; |
| 134 |
} |
| 135 |
|
| 136 |
.bkk-priority { |
| 137 |
display: inline-block; |
| 138 |
flex-shrink: 0; |
| 139 |
} |
| 140 |
|
| 141 |
.bkk-count { |
| 142 |
display: inline-block; |
| 143 |
font-size: 11px; |
| 144 |
background: #e5e7eb; |
| 145 |
border-radius: 999px; |
| 146 |
padding: 1px 7px; |
| 147 |
color: #6b7280; |
| 148 |
font-weight: 600; |
| 149 |
min-width: 20px; |
| 150 |
text-align: center; |
| 151 |
} |
| 152 |
|