cursor-feedback 0.1.23 → 0.1.24

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/dist/extension.js CHANGED
@@ -657,6 +657,7 @@ class FeedbackViewProvider {
657
657
  gap: 6px;
658
658
  font-size: 11px;
659
659
  padding: 6px 10px;
660
+ position: relative;
660
661
  background: var(--vscode-textBlockQuote-background);
661
662
  border-radius: 4px;
662
663
  margin-bottom: 12px;
@@ -686,10 +687,9 @@ class FeedbackViewProvider {
686
687
 
687
688
  .debug-tooltip {
688
689
  display: none;
689
- position: absolute;
690
- top: 100%;
691
- right: 0;
692
- margin-top: 4px;
690
+ position: fixed;
691
+ top: 50px;
692
+ right: 10px;
693
693
  padding: 8px 10px;
694
694
  background: var(--vscode-editorWidget-background);
695
695
  border: 1px solid var(--vscode-editorWidget-border);
@@ -697,8 +697,8 @@ class FeedbackViewProvider {
697
697
  font-size: 11px;
698
698
  white-space: pre-wrap;
699
699
  z-index: 1000;
700
- min-width: 200px;
701
- max-width: 300px;
700
+ min-width: 180px;
701
+ max-width: 280px;
702
702
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
703
703
  }
704
704
 
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "cursor-feedback",
3
3
  "displayName": "Cursor Feedback",
4
4
  "description": "Interactive feedback collection for AI agents in Cursor/VS Code - MCP Server with sidebar UI",
5
- "version": "0.1.23",
5
+ "version": "0.1.24",
6
6
  "author": "jianger666",
7
7
  "license": "MIT",
8
8
  "repository": {
package/src/extension.ts CHANGED
@@ -732,6 +732,7 @@ class FeedbackViewProvider implements vscode.WebviewViewProvider {
732
732
  gap: 6px;
733
733
  font-size: 11px;
734
734
  padding: 6px 10px;
735
+ position: relative;
735
736
  background: var(--vscode-textBlockQuote-background);
736
737
  border-radius: 4px;
737
738
  margin-bottom: 12px;
@@ -761,10 +762,9 @@ class FeedbackViewProvider implements vscode.WebviewViewProvider {
761
762
 
762
763
  .debug-tooltip {
763
764
  display: none;
764
- position: absolute;
765
- top: 100%;
766
- right: 0;
767
- margin-top: 4px;
765
+ position: fixed;
766
+ top: 50px;
767
+ right: 10px;
768
768
  padding: 8px 10px;
769
769
  background: var(--vscode-editorWidget-background);
770
770
  border: 1px solid var(--vscode-editorWidget-border);
@@ -772,8 +772,8 @@ class FeedbackViewProvider implements vscode.WebviewViewProvider {
772
772
  font-size: 11px;
773
773
  white-space: pre-wrap;
774
774
  z-index: 1000;
775
- min-width: 200px;
776
- max-width: 300px;
775
+ min-width: 180px;
776
+ max-width: 280px;
777
777
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
778
778
  }
779
779