質問編集履歴
2
追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -158,6 +158,146 @@
|
|
158
158
|
|
159
159
|
```
|
160
160
|
|
161
|
+
```CSS
|
162
|
+
|
163
|
+
.project-boxes {
|
164
|
+
|
165
|
+
margin: 0 -8px;
|
166
|
+
|
167
|
+
overflow-y: auto;
|
168
|
+
|
169
|
+
&.jsGridView {
|
170
|
+
|
171
|
+
display: flex;
|
172
|
+
|
173
|
+
flex-wrap: wrap;
|
174
|
+
|
175
|
+
.project-box-wrapper {
|
176
|
+
|
177
|
+
width: 33.3%;
|
178
|
+
|
179
|
+
word-wrap: break-word;
|
180
|
+
|
181
|
+
}
|
182
|
+
|
183
|
+
}
|
184
|
+
|
185
|
+
&.jsListView {
|
186
|
+
|
187
|
+
.project-box {
|
188
|
+
|
189
|
+
// display: flex;
|
190
|
+
|
191
|
+
border-radius: 10px;
|
192
|
+
|
193
|
+
position: relative;
|
194
|
+
|
195
|
+
>* {
|
196
|
+
|
197
|
+
margin-right: 24px;
|
198
|
+
|
199
|
+
// margin-bottom: 24px;
|
200
|
+
|
201
|
+
}
|
202
|
+
|
203
|
+
}
|
204
|
+
|
205
|
+
.more-wrapper {
|
206
|
+
|
207
|
+
position: absolute;
|
208
|
+
|
209
|
+
right: 16px;
|
210
|
+
|
211
|
+
top: 16px;
|
212
|
+
|
213
|
+
}
|
214
|
+
|
215
|
+
.project-box-content-header {
|
216
|
+
|
217
|
+
order: 1;
|
218
|
+
|
219
|
+
max-width: 120px;
|
220
|
+
|
221
|
+
overflow-wrap: break-word;
|
222
|
+
|
223
|
+
}
|
224
|
+
|
225
|
+
.project-box-header {
|
226
|
+
|
227
|
+
order: 2;
|
228
|
+
|
229
|
+
display: block;
|
230
|
+
|
231
|
+
|
232
|
+
|
233
|
+
}
|
234
|
+
|
235
|
+
.project-box-footer {
|
236
|
+
|
237
|
+
order: 3;
|
238
|
+
|
239
|
+
padding-top: 0;
|
240
|
+
|
241
|
+
flex-direction: column;
|
242
|
+
|
243
|
+
justify-content: flex-start;
|
244
|
+
|
245
|
+
}
|
246
|
+
|
247
|
+
.project-box-footer:after {
|
248
|
+
|
249
|
+
display: none;
|
250
|
+
|
251
|
+
}
|
252
|
+
|
253
|
+
.participants {
|
254
|
+
|
255
|
+
margin-bottom: 8px;
|
256
|
+
|
257
|
+
}
|
258
|
+
|
259
|
+
.project-box-content-header p {
|
260
|
+
|
261
|
+
text-align: left;
|
262
|
+
|
263
|
+
overflow: hidden;
|
264
|
+
|
265
|
+
white-space: nowrap;
|
266
|
+
|
267
|
+
text-overflow: ellipsis;
|
268
|
+
|
269
|
+
}
|
270
|
+
|
271
|
+
.project-box-header>span {
|
272
|
+
|
273
|
+
position: absolute;
|
274
|
+
|
275
|
+
bottom: 16px;
|
276
|
+
|
277
|
+
left: 16px;
|
278
|
+
|
279
|
+
font-size: 12px;
|
280
|
+
|
281
|
+
}
|
282
|
+
|
283
|
+
.box-progress-wrapper {
|
284
|
+
|
285
|
+
order: 3;
|
286
|
+
|
287
|
+
flex: 1;
|
288
|
+
|
289
|
+
}
|
290
|
+
|
291
|
+
}
|
292
|
+
|
293
|
+
}
|
294
|
+
|
295
|
+
|
296
|
+
|
297
|
+
|
298
|
+
|
299
|
+
```
|
300
|
+
|
161
301
|
### 試してみたこと
|
162
302
|
|
163
303
|
bootstrapの文ではbutton_toやdivが多く使われていたため干渉を起こしているのかと考え、button_toをliタグで囲ってみたりしましたがうまくいきません。
|
1
文字
test
CHANGED
File without changes
|
test
CHANGED
@@ -12,9 +12,9 @@
|
|
12
12
|
|
13
13
|
1 縦三点リーダをクリック
|
14
14
|
|
15
|
-
2 ’
|
15
|
+
2 ’Edit’リンクタグ表示
|
16
16
|
|
17
|
-
3 ’
|
17
|
+
3 ’Edit’リンクタグをクリック
|
18
18
|
|
19
19
|
4 編集画面モーダルウインドウ表示
|
20
20
|
|