Fix skills and multiple maneuvers per weapons

This commit is contained in:
2025-11-29 11:14:16 +01:00
parent 7dfffcb855
commit 58d9b10251
8 changed files with 233 additions and 97 deletions
+58 -1
View File
@@ -9,8 +9,65 @@
height: 50px;
}
}
label {
flex: 10%;
}
.weapon-maneuvers {
legend {
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
button {
padding: 2px 8px;
font-size: 12px;
}
}
.maneuver-item {
margin-bottom: 16px;
padding: 12px;
border: 1px solid var(--color-border-light-primary);
border-radius: 4px;
background: rgba(0, 0, 0, 0.05);
&:last-child {
margin-bottom: 0;
}
}
.maneuver-header {
display: flex;
gap: 8px;
align-items: center;
margin-bottom: 8px;
input[type="text"] {
flex: 1;
}
button {
padding: 4px 8px;
font-size: 12px;
&[data-action="delete-maneuver"] {
color: var(--color-text-danger, #c00);
&:hover {
background: var(--color-bg-danger, rgba(200, 0, 0, 0.1));
}
}
}
}
.hint {
font-style: italic;
color: var(--color-text-light-secondary);
text-align: center;
padding: 12px;
}
}
}