Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions codespace-telemetry-debug.log
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
[2026-03-06T12:52:04.705Z] === CodespaceTelemetryService Constructor Started ===
[2026-03-06T12:52:04.709Z] Session ID: 1772801524705-3xagwzqnckb
[2026-03-06T12:52:04.716Z] CODESPACE_NAME: undefined
[2026-03-06T12:52:04.719Z] CODESPACES: undefined
[2026-03-06T12:52:04.722Z] GITHUB_USER: undefined
[2026-03-06T12:52:04.725Z] GITHUB_CODESPACE_TOKEN: NOT SET
[2026-03-06T12:52:04.727Z] NOT IN GENUINE GITHUB CODESPACE - Service disabled
[2026-03-06T12:52:04.730Z] CODESPACE_NAME: missing
[2026-03-06T12:52:04.732Z] CODESPACES: missing
[2026-03-06T12:52:04.734Z] GITHUB_CODESPACE_TOKEN: missing
[2026-03-23T16:52:06.207Z] === CodespaceTelemetryService Constructor Started ===
[2026-03-23T16:52:06.214Z] Session ID: 1774284726207-l65z4ea2iid
[2026-03-23T16:52:06.219Z] CODESPACE_NAME: undefined
[2026-03-23T16:52:06.222Z] CODESPACES: undefined
[2026-03-23T16:52:06.224Z] GITHUB_USER: undefined
[2026-03-23T16:52:06.226Z] GITHUB_CODESPACE_TOKEN: NOT SET
[2026-03-23T16:52:06.230Z] NOT IN GENUINE GITHUB CODESPACE - Service disabled
[2026-03-23T16:52:06.234Z] CODESPACE_NAME: missing
[2026-03-23T16:52:06.243Z] CODESPACES: missing
[2026-03-23T16:52:06.245Z] GITHUB_CODESPACE_TOKEN: missing
2 changes: 1 addition & 1 deletion src/rules/contrast.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ function isTransparent(color: string): boolean {

export class ContrastRule extends ValidationRule {
type = ValidationRuleType.Error;
name = "ContrastRule";
name = "contrast-rule";
anchored = true;

accept(element: HTMLElement): boolean {
Expand Down
2 changes: 1 addition & 1 deletion src/rules/tabindex.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ const INTERACTIVE_ROLES = new Set([

export class TabIndexRule extends ValidationRule {
type = ValidationRuleType.Warning;
name = "tabindex";
name = "tab-index";
anchored = true;

accept(element: HTMLElement): boolean {
Expand Down
3 changes: 3 additions & 0 deletions src/ui/chevron.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions src/ui/copy.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
20 changes: 18 additions & 2 deletions src/ui/highlighter.css
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
.abledom-highlight {
background-color: yellow;
box-sizing: border-box;
display: none;
opacity: 0.6;
position: fixed;
z-index: 100499;
pointer-events: none !important;
}

.abledom-highlight-border1 {
Expand All @@ -28,3 +27,20 @@
height: calc(100% + 20px);
margin: -10px 0;
}

.abledom-dimming-overlay {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
background: rgba(0, 0, 0, 0.5);
z-index: 100498;
pointer-events: none;
opacity: 0;
transition: opacity 0.2s ease;
}

.abledom-dimming-overlay.visible {
opacity: 1;
}
7 changes: 7 additions & 0 deletions src/ui/sparkles.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading