agent-tasks 1.10.9 → 1.10.11
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 +35 -3
- package/package.json +1 -1
package/agent-desk-plugin.json
CHANGED
package/dist/ui/styles.css
CHANGED
|
@@ -2925,17 +2925,20 @@ header {
|
|
|
2925
2925
|
font-size: 14px;
|
|
2926
2926
|
}
|
|
2927
2927
|
.header-right {
|
|
2928
|
-
width:
|
|
2929
|
-
justify-content: flex-end;
|
|
2930
|
-
flex-wrap: wrap;
|
|
2928
|
+
width: auto;
|
|
2931
2929
|
gap: 6px;
|
|
2932
2930
|
}
|
|
2933
2931
|
.stats {
|
|
2934
2932
|
display: none;
|
|
2935
2933
|
}
|
|
2934
|
+
|
|
2935
|
+
/* -- Filter bar: hide orphaned icon, compact layout -- */
|
|
2936
2936
|
.filter-bar {
|
|
2937
2937
|
padding: 6px 10px;
|
|
2938
2938
|
}
|
|
2939
|
+
.filter-icon {
|
|
2940
|
+
display: none;
|
|
2941
|
+
}
|
|
2939
2942
|
.filter-group {
|
|
2940
2943
|
flex-wrap: wrap;
|
|
2941
2944
|
gap: 6px;
|
|
@@ -2948,6 +2951,35 @@ header {
|
|
|
2948
2951
|
flex: 1 1 calc(50% - 3px);
|
|
2949
2952
|
min-width: 0;
|
|
2950
2953
|
}
|
|
2954
|
+
|
|
2955
|
+
/* -- Kanban: compact empty columns -- */
|
|
2956
|
+
.column-empty {
|
|
2957
|
+
padding: 12px 8px;
|
|
2958
|
+
}
|
|
2959
|
+
.column-empty .material-symbols-outlined {
|
|
2960
|
+
font-size: 22px;
|
|
2961
|
+
}
|
|
2962
|
+
.column-empty .empty-text {
|
|
2963
|
+
font-size: 11px;
|
|
2964
|
+
}
|
|
2965
|
+
.column-empty .empty-cta {
|
|
2966
|
+
font-size: 11px;
|
|
2967
|
+
padding: 3px 8px;
|
|
2968
|
+
}
|
|
2969
|
+
.column-add-btn {
|
|
2970
|
+
padding: 6px;
|
|
2971
|
+
font-size: 12px;
|
|
2972
|
+
}
|
|
2973
|
+
|
|
2974
|
+
/* -- Icon buttons: touch-friendly -- */
|
|
2975
|
+
.icon-btn {
|
|
2976
|
+
min-width: 36px;
|
|
2977
|
+
min-height: 36px;
|
|
2978
|
+
display: inline-flex;
|
|
2979
|
+
align-items: center;
|
|
2980
|
+
justify-content: center;
|
|
2981
|
+
}
|
|
2982
|
+
|
|
2951
2983
|
.kanban-board {
|
|
2952
2984
|
flex-direction: column;
|
|
2953
2985
|
overflow-y: auto;
|
package/package.json
CHANGED