Skip to content

Commit

Permalink
Introduce Auto-Append scrolling behavior and rename Infinite behavior…
Browse files Browse the repository at this point in the history
… to Grow (eclipse-cdt-cloud#72)
  • Loading branch information
haydar-metin committed Mar 7, 2024
1 parent 7416dc9 commit 536f4c0
Show file tree
Hide file tree
Showing 8 changed files with 287 additions and 105 deletions.
11 changes: 11 additions & 0 deletions media/options-widget.css
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,11 @@
row-gap: 12px;
}

.form-textfield {
position: relative;
padding-bottom: 16px;
}

.form-textfield > input {
width: 150px;
}
Expand All @@ -89,6 +94,12 @@
align-self: start;
}

.form-options-memory-read-argument-hint {
position: absolute;
bottom: 0;
color: var(--vscode-descriptionForeground);
}

.advanced-options-content h2 {
font-size: 120%;
margin: 0.5rem 0 0 0;
Expand Down
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -214,12 +214,14 @@
"type": "string",
"enum": [
"Paginate",
"Infinite"
"Grow",
"Auto-Append"
],
"default": "Paginate",
"enumDescriptions": [
"Maintains a consistent memory size, replacing the previous request.",
"Appends new memory to bounds of current request, resulting in a growing list."
"Appends new memory to bounds of current request, resulting in a growing list.",
"Automatically appends new memory to the bounds of the current request on reaching the end of the list, resulting in a growing list."
],
"description": "Behavior when adding more memory beyond the current view."
},
Expand Down

0 comments on commit 536f4c0

Please sign in to comment.