mirror of
https://github.com/go-gitea/gitea.git
synced 2024-11-02 08:57:32 -04:00
7fda109aba
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`.
26 lines
439 B
CSS
26 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;
|
|
}
|