Files
wehub-resource-sync 4b6817381b
Benchmark image — build + push to ECR (any adapter) / build + push (push) Waiting to run
CI / quality (ubuntu-latest) (push) Waiting to run
CI / test (tools-runtime) (push) Waiting to run
CI / test (e2e-general) (push) Waiting to run
CI / test (cli-runtime) (push) Waiting to run
CI / test (e2e-provider-and-openclaw) (push) Waiting to run
CI / test (integrations-and-misc) (push) Waiting to run
CI / coverage-report (push) Blocked by required conditions
CI / test-kubernetes (push) Waiting to run
CI / should-run-thorough (push) Waiting to run
CI / test-thorough (cloudwatch-demo) (push) Blocked by required conditions
CI / test-thorough (flink-ecs) (push) Blocked by required conditions
CI / test-thorough (upstream-lambda) (push) Blocked by required conditions
CI / test-thorough (prefect-ecs-fargate) (push) Blocked by required conditions
CodeQL / Analyze (python) (push) Waiting to run
Release / build-binaries (zip, opensre.exe, onefile, windows-latest, windows-x64) (push) Blocked by required conditions
Release / publish-release (push) Blocked by required conditions
Release / publish-main-release (push) Blocked by required conditions
Release / prepare (push) Waiting to run
Release / verify (push) Blocked by required conditions
Release / build-python-dist (push) Blocked by required conditions
Release / build-binaries (tar.gz, opensre, onedir, macos-15-intel, darwin-x64) (push) Blocked by required conditions
Release / build-binaries (tar.gz, opensre, onedir, macos-latest, darwin-arm64) (push) Blocked by required conditions
Release / build-binaries (tar.gz, opensre, onedir, ubuntu-22.04, linux-x64) (push) Blocked by required conditions
Release / build-binaries (tar.gz, opensre, onedir, ubuntu-22.04-arm, linux-arm64) (push) Blocked by required conditions
Synthetic Deterministic Tests / Synthetic offline (deterministic) (push) Waiting to run
Interactive Shell Live (PR + post-merge) / turn-checks (no-LLM) (push) Waiting to run
Interactive Shell Live (PR + post-merge) / turn-live shard ${{ matrix.shard_index }} (push) Waiting to run
CI (OpenClaw E2E) / openclaw test (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:10:45 +08:00

105 lines
3.1 KiB
CSS

/* Keep this file small: only sidebar/nav polish. */
#sidebar .sidebar-group-header,
#sidebar .sidebar-group-header h5,
#navigation-items .sidebar-group-header,
#navigation-items .sidebar-group-header h5 {
font-weight: 700 !important;
}
:root:not(.dark) #sidebar .sidebar-group-header,
:root:not(.dark) #sidebar .sidebar-group-header h5,
:root:not(.dark) #navigation-items .sidebar-group-header,
:root:not(.dark) #navigation-items .sidebar-group-header h5 {
color: #000000 !important;
}
html.dark #sidebar .sidebar-group-header,
html.dark #sidebar .sidebar-group-header h5,
html.dark #navigation-items .sidebar-group-header,
html.dark #navigation-items .sidebar-group-header h5 {
color: #ffffff !important;
}
/* Use the Tracer mark for the Tracer tab and swap to the white asset in dark mode. */
header img[src*="Tracer-Head-Black.png"],
header img[src*="Tracer-Head-White.png"],
nav img[src*="Tracer-Head-Black.png"],
nav img[src*="Tracer-Head-White.png"] {
width: 1rem !important;
height: 1rem !important;
object-fit: contain !important;
}
html.dark img[src*="Tracer-Head-Black.png"] {
filter: brightness(0) invert(1) !important;
}
/* Right sidebar ("On this page") alignment: keep TOC items + custom actions flush. */
.toc-custom-actions {
margin-top: 0.75rem;
padding-top: 0.75rem;
border-top: 1px solid rgba(0, 0, 0, 0.1);
}
html.dark .toc-custom-actions {
border-top-color: rgba(255, 255, 255, 0.1);
}
.toc-custom-action {
display: flex;
align-items: center;
gap: 0.5rem;
padding-left: 0.25rem; /* match Mintlify TOC link inset */
font-size: 0.875rem;
line-height: 1.75rem;
color: inherit;
}
.toc-custom-action span {
display: inline-block;
}
/* Right sidebar TOC list should align under the "On this page" label. */
#table-of-contents-content,
[data-testid="table-of-contents"],
nav[aria-label*="Table of contents"],
[class*="table-of-contents"] {
padding-left: 0 !important;
}
#table-of-contents-content ul,
[data-testid="table-of-contents"] ul,
nav[aria-label*="Table of contents"] ul,
[class*="table-of-contents"] ul {
padding-left: 0 !important;
margin-left: 0 !important;
}
#table-of-contents-content a,
[data-testid="table-of-contents"] a,
nav[aria-label*="Table of contents"] a,
[class*="table-of-contents"] a {
padding-left: 0.25rem !important; /* align with header text */
margin-left: 0 !important;
}
/* Mintlify sometimes centers/indents the right sidebar TOC via flex wrappers.
Force a consistent left alignment for all TOC rows. */
[class*="right-sidebar"] #table-of-contents-content,
[class*="right-sidebar"] [data-testid="table-of-contents"],
[class*="right-sidebar"] nav[aria-label*="Table of contents"],
[class*="right-sidebar"] [class*="table-of-contents"] {
text-align: left !important;
align-items: flex-start !important;
justify-content: flex-start !important;
}
[class*="right-sidebar"] #table-of-contents-content a,
[class*="right-sidebar"] [data-testid="table-of-contents"] a,
[class*="right-sidebar"] nav[aria-label*="Table of contents"] a,
[class*="right-sidebar"] [class*="table-of-contents"] a {
display: block !important;
width: 100% !important;
text-align: left !important;
}