mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 07:09:21 +01:00
47c61f909c
1. Add "grabbing" cursor while dragging items: ![](https://github.com/go-gitea/gitea/assets/115237/c60845ff-7544-4215-aeaa-408e8c4ef03a) 2. Make project board only drag via their header, not via their whole body. ![](https://github.com/go-gitea/gitea/assets/115237/62c27f3d-993a-481d-9cc3-b6226b4c5d61) 3. Fix some cursor problems in projects 4. Move shared options into `createSortable`. (cherry picked from commit 7fda109aba6cd077343edef086b2f2ff60124f78)
25 lines
439 B
CSS
25 lines
439 B
CSS
.issue-card {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: start;
|
|
border-radius: var(--border-radius);
|
|
padding: 8px 10px;
|
|
border: 1px solid var(--color-secondary);
|
|
background: var(--color-card);
|
|
}
|
|
|
|
.issue-card-icon,
|
|
.issue-card-unpin {
|
|
margin-top: 1px;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.issue-card-title {
|
|
flex: 1;
|
|
font-size: 14px;
|
|
margin-left: 4px;
|
|
}
|
|
|
|
.issue-card.sortable-chosen .issue-card-title {
|
|
cursor: inherit;
|
|
}
|