claude-code-kanban 2.2.0-rc.6 → 2.2.0-rc.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/public/index.html +4 -4
- package/public/style.css +15 -4
package/package.json
CHANGED
package/public/index.html
CHANGED
|
@@ -406,7 +406,7 @@
|
|
|
406
406
|
|
|
407
407
|
<!-- Delete Confirmation Modal -->
|
|
408
408
|
<div id="delete-confirm-modal" class="modal-overlay" onclick="closeDeleteConfirmModal()">
|
|
409
|
-
<div class="modal" onclick="event.stopPropagation()"
|
|
409
|
+
<div class="modal modal-sm" onclick="event.stopPropagation()">
|
|
410
410
|
<div class="modal-header">
|
|
411
411
|
<h3 class="modal-title">Delete Task</h3>
|
|
412
412
|
<button class="modal-close" aria-label="Close dialog" onclick="closeDeleteConfirmModal()">
|
|
@@ -427,7 +427,7 @@
|
|
|
427
427
|
|
|
428
428
|
<!-- Delete All Session Tasks Confirmation Modal -->
|
|
429
429
|
<div id="delete-session-tasks-modal" class="modal-overlay" onclick="closeDeleteSessionTasksModal()">
|
|
430
|
-
<div class="modal" onclick="event.stopPropagation()"
|
|
430
|
+
<div class="modal" onclick="event.stopPropagation()">
|
|
431
431
|
<div class="modal-header">
|
|
432
432
|
<h3 class="modal-title">Delete All Tasks</h3>
|
|
433
433
|
<button class="modal-close" aria-label="Close dialog" onclick="closeDeleteSessionTasksModal()">
|
|
@@ -449,7 +449,7 @@
|
|
|
449
449
|
|
|
450
450
|
<!-- Delete Result Modal -->
|
|
451
451
|
<div id="delete-result-modal" class="modal-overlay" onclick="closeDeleteResultModal()">
|
|
452
|
-
<div class="modal" onclick="event.stopPropagation()"
|
|
452
|
+
<div class="modal" onclick="event.stopPropagation()">
|
|
453
453
|
<div class="modal-header">
|
|
454
454
|
<h3 class="modal-title">Deletion Result</h3>
|
|
455
455
|
<button class="modal-close" aria-label="Close dialog" onclick="closeDeleteResultModal()">
|
|
@@ -517,7 +517,7 @@
|
|
|
517
517
|
|
|
518
518
|
<!-- Blocked Task Warning Modal -->
|
|
519
519
|
<div id="blocked-task-modal" class="modal-overlay" onclick="closeBlockedTaskModal()">
|
|
520
|
-
<div class="modal" onclick="event.stopPropagation()"
|
|
520
|
+
<div class="modal modal-sm" onclick="event.stopPropagation()">
|
|
521
521
|
<div class="modal-header">
|
|
522
522
|
<h3 class="modal-title" style="display: flex; align-items: center; gap: 8px;">
|
|
523
523
|
<svg viewBox="0 0 24 24" fill="none" stroke="#ef4444" stroke-width="2" style="width: 20px; height: 20px;">
|
package/public/style.css
CHANGED
|
@@ -2570,10 +2570,10 @@ body.light .msg-assistant .msg-text {
|
|
|
2570
2570
|
}
|
|
2571
2571
|
|
|
2572
2572
|
.modal.fullscreen {
|
|
2573
|
-
width:
|
|
2574
|
-
max-width:
|
|
2575
|
-
height:
|
|
2576
|
-
max-height:
|
|
2573
|
+
width: 90vw;
|
|
2574
|
+
max-width: 90vw;
|
|
2575
|
+
height: 92vh;
|
|
2576
|
+
max-height: 92vh;
|
|
2577
2577
|
}
|
|
2578
2578
|
|
|
2579
2579
|
.modal.plan-modal {
|
|
@@ -2584,6 +2584,17 @@ body.light .msg-assistant .msg-text {
|
|
|
2584
2584
|
flex-direction: column;
|
|
2585
2585
|
}
|
|
2586
2586
|
|
|
2587
|
+
.modal.plan-modal.fullscreen {
|
|
2588
|
+
width: 90vw;
|
|
2589
|
+
max-width: 90vw;
|
|
2590
|
+
height: 92vh;
|
|
2591
|
+
max-height: 92vh;
|
|
2592
|
+
}
|
|
2593
|
+
|
|
2594
|
+
.modal-sm {
|
|
2595
|
+
max-width: 440px;
|
|
2596
|
+
}
|
|
2597
|
+
|
|
2587
2598
|
@keyframes live-border-pulse {
|
|
2588
2599
|
0%,
|
|
2589
2600
|
100% {
|