mirror of
https://github.com/Kilo-Org/kilocode.git
synced 2026-08-29 03:44:06 +08:00
fix(ui): restore pointer cursors for clickable controls (#10999)
* fix(ui): restore pointer cursors for clickable controls * fix(ci): raise VS Code Storybook heap limit * fix(ci): extend heap to visual test server
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
---
|
||||
"kilo-code": patch
|
||||
"@kilocode/kilo-ui": patch
|
||||
---
|
||||
|
||||
Show a pointer cursor for clickable controls and links in Kilo webviews.
|
||||
@@ -284,6 +284,10 @@ jobs:
|
||||
if: steps.storybook-cache-vscode.outputs.cache-hit != 'true'
|
||||
run: bun run build-storybook
|
||||
working-directory: packages/kilo-vscode
|
||||
# kilocode_change start
|
||||
env:
|
||||
NODE_OPTIONS: --max-old-space-size=4096
|
||||
# kilocode_change end
|
||||
|
||||
- name: Generate baselines and enforce webview accessibility checks # kilocode_change
|
||||
run: bun run test:visual:update
|
||||
@@ -291,6 +295,7 @@ jobs:
|
||||
env:
|
||||
CI: true
|
||||
PLAYWRIGHT_WORKERS: "4"
|
||||
NODE_OPTIONS: --max-old-space-size=4096 # kilocode_change
|
||||
|
||||
- name: Remove stale baselines for deleted stories
|
||||
run: |
|
||||
|
||||
@@ -37,6 +37,21 @@
|
||||
--radius-xl: 6px;
|
||||
}
|
||||
|
||||
/* ===== Interactive cursors ===== */
|
||||
|
||||
:where(
|
||||
button:not(:disabled),
|
||||
a[href],
|
||||
summary,
|
||||
[role="button"]:not([aria-disabled="true"]),
|
||||
[role="link"]:not([aria-disabled="true"]),
|
||||
[role="menuitem"]:not([aria-disabled="true"]),
|
||||
[role="option"]:not([aria-disabled="true"]),
|
||||
[role="tab"]:not([aria-disabled="true"])
|
||||
) {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/* ===== Scrollbar styling ===== */
|
||||
|
||||
::-webkit-scrollbar {
|
||||
|
||||
Reference in New Issue
Block a user