mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2025-03-04 02:51:46 +00:00
1. Add "grabbing" cursor while dragging items:  2. Make project board only drag via their header, not via their whole body.  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;
|
|
}
|