Gitea-Projektintegration im Ticket-Frontend dauerhaft einbinden.
Projekt-Zuweisung, README-Anzeige und Admin-API-Hooks ins Repo committen, damit deploy.sh die Änderungen nicht mehr verwirft. Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
@@ -531,6 +531,109 @@ textarea.form-control {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.ticket-projects-overlay { padding: 24px; }
|
||||
.ticket-projects-modal { width: 100%; max-width: none; min-height: calc(100vh - 48px); box-sizing: border-box; }
|
||||
.ticket-projects-modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
|
||||
.ticket-projects-modal-header h2 { margin: 0; }
|
||||
.ticket-projects-modal-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(320px, 1fr); gap: 24px; align-items: start; }
|
||||
.ticket-projects-modal-section { background: rgba(45,55,72,0.65); border: 1px solid rgba(59,130,246,0.25); border-radius: 12px; padding: 16px 18px; margin-bottom: 16px; }
|
||||
.ticket-projects-modal-section h6 { font-weight: bold; margin: 0 0 12px; }
|
||||
.ticket-projects-modal-side { display: flex; flex-direction: column; }
|
||||
.ticket-projects-available-list { max-height: min(50vh, 520px); overflow-y: auto; margin-bottom: 8px; display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 6px 16px; }
|
||||
.ticket-projects-available-item { display: flex; gap: 8px; align-items: flex-start; cursor: pointer; padding: 4px 0; }
|
||||
.ticket-projects-create-form { display: grid; grid-template-columns: 1fr 1fr auto; gap: 10px; align-items: end; }
|
||||
@media (max-width: 900px) {
|
||||
.ticket-projects-modal-grid { grid-template-columns: 1fr; }
|
||||
.ticket-projects-create-form { grid-template-columns: 1fr; }
|
||||
.ticket-projects-available-list { grid-template-columns: 1fr; }
|
||||
}
|
||||
|
||||
.ticket-projects-overlay {
|
||||
padding: 24px;
|
||||
}
|
||||
|
||||
.ticket-projects-modal {
|
||||
width: 100%;
|
||||
max-width: none;
|
||||
min-height: calc(100vh - 48px);
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.ticket-projects-modal-header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.ticket-projects-modal-header h2 {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.ticket-projects-modal-grid {
|
||||
display: grid;
|
||||
grid-template-columns: minmax(0, 1.4fr) minmax(320px, 1fr);
|
||||
gap: 24px;
|
||||
align-items: start;
|
||||
}
|
||||
|
||||
.ticket-projects-modal-section {
|
||||
background: rgba(45, 55, 72, 0.65);
|
||||
border: 1px solid rgba(59, 130, 246, 0.25);
|
||||
border-radius: 12px;
|
||||
padding: 16px 18px;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
.ticket-projects-modal-section h6 {
|
||||
font-weight: bold;
|
||||
margin: 0 0 12px;
|
||||
}
|
||||
|
||||
.ticket-projects-modal-side {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0;
|
||||
}
|
||||
|
||||
.ticket-projects-available-list {
|
||||
max-height: min(50vh, 520px);
|
||||
overflow-y: auto;
|
||||
margin-bottom: 8px;
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
|
||||
gap: 6px 16px;
|
||||
}
|
||||
|
||||
.ticket-projects-available-item {
|
||||
display: flex;
|
||||
gap: 8px;
|
||||
align-items: flex-start;
|
||||
cursor: pointer;
|
||||
padding: 4px 0;
|
||||
}
|
||||
|
||||
.ticket-projects-create-form {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr auto;
|
||||
gap: 10px;
|
||||
align-items: end;
|
||||
}
|
||||
|
||||
@media (max-width: 900px) {
|
||||
.ticket-projects-modal-grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.ticket-projects-create-form {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.ticket-projects-available-list {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
}
|
||||
|
||||
.modal-content {
|
||||
background: rgba(45, 55, 72, 0.98) !important;
|
||||
border: 1px solid rgba(16, 185, 129, 0.3) !important;
|
||||
|
||||
Reference in New Issue
Block a user