agent-tasks 1.10.8 → 1.10.9
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/agent-desk-plugin.json +1 -1
- package/dist/ui/styles.css +131 -0
- package/package.json +1 -1
package/agent-desk-plugin.json
CHANGED
package/dist/ui/styles.css
CHANGED
|
@@ -2906,3 +2906,134 @@ header {
|
|
|
2906
2906
|
overflow-x: auto;
|
|
2907
2907
|
min-width: 0;
|
|
2908
2908
|
}
|
|
2909
|
+
|
|
2910
|
+
/* --------------------------------------------------------------------------
|
|
2911
|
+
Mobile Responsive (768px)
|
|
2912
|
+
-------------------------------------------------------------------------- */
|
|
2913
|
+
|
|
2914
|
+
@media (max-width: 768px) {
|
|
2915
|
+
header {
|
|
2916
|
+
flex-wrap: wrap;
|
|
2917
|
+
padding: 6px 12px;
|
|
2918
|
+
gap: 8px;
|
|
2919
|
+
}
|
|
2920
|
+
.header-left {
|
|
2921
|
+
width: 100%;
|
|
2922
|
+
justify-content: space-between;
|
|
2923
|
+
}
|
|
2924
|
+
.header-left h1 {
|
|
2925
|
+
font-size: 14px;
|
|
2926
|
+
}
|
|
2927
|
+
.header-right {
|
|
2928
|
+
width: 100%;
|
|
2929
|
+
justify-content: flex-end;
|
|
2930
|
+
flex-wrap: wrap;
|
|
2931
|
+
gap: 6px;
|
|
2932
|
+
}
|
|
2933
|
+
.stats {
|
|
2934
|
+
display: none;
|
|
2935
|
+
}
|
|
2936
|
+
.filter-bar {
|
|
2937
|
+
padding: 6px 10px;
|
|
2938
|
+
}
|
|
2939
|
+
.filter-group {
|
|
2940
|
+
flex-wrap: wrap;
|
|
2941
|
+
gap: 6px;
|
|
2942
|
+
}
|
|
2943
|
+
.filter-input {
|
|
2944
|
+
flex: 1 1 100%;
|
|
2945
|
+
max-width: none;
|
|
2946
|
+
}
|
|
2947
|
+
.filter-select {
|
|
2948
|
+
flex: 1 1 calc(50% - 3px);
|
|
2949
|
+
min-width: 0;
|
|
2950
|
+
}
|
|
2951
|
+
.kanban-board {
|
|
2952
|
+
flex-direction: column;
|
|
2953
|
+
overflow-y: auto;
|
|
2954
|
+
overflow-x: hidden;
|
|
2955
|
+
padding: 8px;
|
|
2956
|
+
gap: 8px;
|
|
2957
|
+
}
|
|
2958
|
+
.kanban-column {
|
|
2959
|
+
min-width: 0;
|
|
2960
|
+
max-width: none;
|
|
2961
|
+
flex: 0 0 auto;
|
|
2962
|
+
max-height: none;
|
|
2963
|
+
width: 100%;
|
|
2964
|
+
}
|
|
2965
|
+
.kanban-column.collapsed {
|
|
2966
|
+
min-width: 0;
|
|
2967
|
+
max-width: none;
|
|
2968
|
+
writing-mode: horizontal-tb;
|
|
2969
|
+
}
|
|
2970
|
+
.kanban-column.collapsed .column-header {
|
|
2971
|
+
writing-mode: horizontal-tb;
|
|
2972
|
+
flex-direction: row;
|
|
2973
|
+
padding: 10px 12px;
|
|
2974
|
+
}
|
|
2975
|
+
.column-body {
|
|
2976
|
+
max-height: none;
|
|
2977
|
+
}
|
|
2978
|
+
.board-wrapper.panel-open .side-panel {
|
|
2979
|
+
position: fixed;
|
|
2980
|
+
inset: 0;
|
|
2981
|
+
width: 100%;
|
|
2982
|
+
min-width: 100%;
|
|
2983
|
+
z-index: 200;
|
|
2984
|
+
border-left: none;
|
|
2985
|
+
box-shadow: none;
|
|
2986
|
+
}
|
|
2987
|
+
.board-wrapper.panel-open .side-panel.panel-wide {
|
|
2988
|
+
width: 100%;
|
|
2989
|
+
}
|
|
2990
|
+
.panel-resize-handle {
|
|
2991
|
+
display: none;
|
|
2992
|
+
}
|
|
2993
|
+
.task-card {
|
|
2994
|
+
padding: 8px 10px;
|
|
2995
|
+
min-width: 0;
|
|
2996
|
+
width: 100%;
|
|
2997
|
+
}
|
|
2998
|
+
.task-card:hover {
|
|
2999
|
+
transform: none;
|
|
3000
|
+
}
|
|
3001
|
+
.modal {
|
|
3002
|
+
width: calc(100% - 16px);
|
|
3003
|
+
max-width: 100%;
|
|
3004
|
+
margin: 8px;
|
|
3005
|
+
max-height: calc(100vh - 16px);
|
|
3006
|
+
}
|
|
3007
|
+
.confirm-dialog {
|
|
3008
|
+
min-width: 0;
|
|
3009
|
+
max-width: calc(100% - 16px);
|
|
3010
|
+
margin: 8px;
|
|
3011
|
+
}
|
|
3012
|
+
.toast-container {
|
|
3013
|
+
left: 8px;
|
|
3014
|
+
right: 8px;
|
|
3015
|
+
top: 8px;
|
|
3016
|
+
}
|
|
3017
|
+
.toast {
|
|
3018
|
+
max-width: none;
|
|
3019
|
+
}
|
|
3020
|
+
.panel-body {
|
|
3021
|
+
padding: 12px;
|
|
3022
|
+
}
|
|
3023
|
+
.panel-grid {
|
|
3024
|
+
grid-template-columns: 80px 1fr;
|
|
3025
|
+
gap: 4px 8px;
|
|
3026
|
+
}
|
|
3027
|
+
.board-empty .empty-steps {
|
|
3028
|
+
flex-direction: column;
|
|
3029
|
+
align-items: center;
|
|
3030
|
+
gap: 12px;
|
|
3031
|
+
}
|
|
3032
|
+
.diff-viewer {
|
|
3033
|
+
flex-direction: column;
|
|
3034
|
+
}
|
|
3035
|
+
.diff-side {
|
|
3036
|
+
flex: none;
|
|
3037
|
+
width: 100%;
|
|
3038
|
+
}
|
|
3039
|
+
}
|
package/package.json
CHANGED