Suppression d'une issue

This commit is contained in:
Cédric OLIVIER
2026-05-22 18:33:32 +02:00
parent 6cb8197f0c
commit 26dfbae927
5 changed files with 287 additions and 7 deletions
@@ -9,6 +9,41 @@
gap: 1rem;
}
.header-meta {
display: flex;
align-items: flex-start;
gap: 1rem;
flex-wrap: wrap;
justify-content: flex-end;
}
.status-inline {
display: flex;
align-items: center;
gap: 0.5rem;
background: #ffffff;
border: 1px solid #dbe4f0;
border-radius: 0.75rem;
padding: 0.5rem 0.75rem;
}
.status-label {
font-size: 0.875rem;
font-weight: 700;
color: #374151;
}
.status-select {
min-width: 9rem;
}
.header-actions {
display: flex;
gap: 0.75rem;
flex-wrap: wrap;
justify-content: flex-end;
}
.page-header h1 {
margin: 0;
font-size: 2rem;
@@ -33,6 +68,56 @@
background-color: #1d4ed8;
}
.more-wrapper {
position: relative;
}
.more-button {
border: 1px solid #d1d5db;
border-radius: 0.5rem;
background-color: #ffffff;
color: #374151;
padding: 0.65rem 1rem;
font-weight: 600;
cursor: pointer;
}
.more-button:hover {
background-color: #f9fafb;
}
.more-menu {
position: absolute;
right: 0;
top: calc(100% + 0.5rem);
min-width: 10rem;
background: #ffffff;
border: 1px solid #e5e7eb;
border-radius: 0.75rem;
box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
padding: 0.25rem;
z-index: 10;
}
.more-menu-item {
width: 100%;
border: none;
background: transparent;
padding: 0.65rem 0.85rem;
border-radius: 0.5rem;
text-align: left;
font-weight: 600;
cursor: pointer;
}
.more-menu-item:hover {
background: #f3f4f6;
}
.delete-action {
color: #b91c1c;
}
.save-button {
border: none;
border-radius: 0.5rem;
@@ -61,6 +146,10 @@
background-color: #f3f4f6;
}
.dependency-multiselect {
min-height: 8rem;
}
.detail-card {
background-color: #ffffff;
border: 1px solid #e5e7eb;
@@ -119,6 +208,19 @@ tr:last-child td {
flex-direction: column;
}
.header-meta {
width: 100%;
justify-content: flex-start;
}
.status-inline {
width: 100%;
}
.status-select {
width: 100%;
}
th {
width: 40%;
}