cursor-feedback 2.7.5 → 2.7.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/CHANGELOG.md CHANGED
@@ -2,6 +2,21 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [2.7.7](https://github.com/jianger666/cursor-feedback-extension/compare/v2.7.6...v2.7.7) (2026-07-15)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * **ci:** 发布流水线 pin npm@11——npm@latest 已升 12 要求 Node>=22.22,与 job 的 Node 20 不兼容致 EBADENGINE,v2.7.6 npm 渠道漏发 ([f35ad7c](https://github.com/jianger666/cursor-feedback-extension/commit/f35ad7c4584e8863ba2e0b6313fff0735db740ba))
11
+
12
+ ### [2.7.6](https://github.com/jianger666/cursor-feedback-extension/compare/v2.7.5...v2.7.6) (2026-07-14)
13
+
14
+
15
+ ### Styles
16
+
17
+ * **webview:** 压缩面板左右留白——.app/.card/.summary 三层 padding 叠加达每侧 36px,收窄到 20px,正文可用宽度明显变大 ([8c027e4](https://github.com/jianger666/cursor-feedback-extension/commit/8c027e4f7d05a9c5fdd899fc5cd4702779999695))
18
+ * **webview:** 面板留白重调——清除 VS Code 注入的 body 默认 padding(每侧约 20px 的隐形留白),内层 .card/.summary 收到 6px,外层 16px 呼吸感,每侧总留白 56px → 28px ([16566e4](https://github.com/jianger666/cursor-feedback-extension/commit/16566e42e1ccbd417c09e1bc3420fe5e12319c65))
19
+
5
20
  ### [2.7.5](https://github.com/jianger666/cursor-feedback-extension/compare/v2.7.4...v2.7.5) (2026-07-07)
6
21
 
7
22
 
@@ -65,13 +65,19 @@ body {
65
65
  background: var(--surface);
66
66
  line-height: 1.5;
67
67
  -webkit-font-smoothing: antialiased;
68
+ /* VS Code 给 webview 注入的默认样式带 body 左右 padding(约 20px),
69
+ 通配符 * 的优先级压不过元素选择器,必须在这里显式清零 */
70
+ padding: 0;
68
71
  }
69
72
 
70
73
  .app {
71
74
  display: flex;
72
75
  flex-direction: column;
73
76
  gap: var(--sp-3);
74
- padding: var(--sp-3);
77
+ /* 侧边栏宽度金贵:内层(.card/.summary)收到 6px,外层留 16px 呼吸感
78
+ (实测 0/4/12px 逐档调过,16px 视觉最舒服;VS Code 注入的 body 默认
79
+ padding 已在 body 处清零,这里是唯一的外层留白来源) */
80
+ padding: var(--sp-3) var(--sp-4);
75
81
  height: 100vh;
76
82
  overflow: hidden;
77
83
  }
@@ -406,7 +412,7 @@ svg {
406
412
  background: var(--surface-raised);
407
413
  border: 1px solid var(--line);
408
414
  border-radius: var(--radius-lg);
409
- padding: var(--sp-3);
415
+ padding: var(--sp-3) 6px;
410
416
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
411
417
  }
412
418
  .card__head {
@@ -515,7 +521,7 @@ svg {
515
521
  overflow-y: auto;
516
522
  font-size: 13px;
517
523
  line-height: 1.65;
518
- padding: var(--sp-3);
524
+ padding: var(--sp-2) 6px;
519
525
  background: var(--surface-sunken);
520
526
  border: 1px solid var(--line-soft);
521
527
  border-radius: var(--radius-md);
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "cursor-feedback",
3
3
  "displayName": "Cursor Feedback",
4
4
  "description": "One Cursor conversation, unlimited AI interactions - Save your monthly request quota! Interactive feedback loop for AI chat via MCP",
5
- "version": "2.7.5",
5
+ "version": "2.7.7",
6
6
  "icon": "icon.png",
7
7
  "author": "jianger666",
8
8
  "license": "MIT",