mirror of
https://github.com/stack-auth/stack.git
synced 2026-06-04 21:04:37 +08:00
Some checks failed
all-good: Did all the other checks pass? / all-good (push) Has been cancelled
Ensure Prisma migrations are in sync with the schema / check_prisma_migrations (22.x) (push) Has been cancelled
Docker Server Build and Push / Docker Build and Push Server (push) Has been cancelled
Docker Server Build and Run / docker (push) Has been cancelled
Runs E2E API Tests (Local Emulator) / E2E Tests (Local Emulator, Node ${{ matrix.node-version }}) (22.x) (push) Has been cancelled
Runs E2E API Tests / E2E Tests (Node ${{ matrix.node-version }}, Freestyle ${{ matrix.freestyle-mode }}) (mock, 22.x) (push) Has been cancelled
Runs E2E API Tests / E2E Tests (Node ${{ matrix.node-version }}, Freestyle ${{ matrix.freestyle-mode }}) (prod, 22.x) (push) Has been cancelled
Runs E2E API Tests with custom port prefix / build (22.x) (push) Has been cancelled
Lint & build / lint_and_build (latest) (push) Has been cancelled
Mirror main branch to main-mirror-for-wdb / lint_and_build (push) Has been cancelled
Publish npm packages / publish (push) Has been cancelled
Dev Environment Test With Custom Base Port / restart-dev-and-test-with-custom-base-port (push) Has been cancelled
Dev Environment Test / restart-dev-and-test (push) Has been cancelled
Run setup tests with custom base port / setup-tests-with-custom-base-port (push) Has been cancelled
Run setup tests / setup-tests (push) Has been cancelled
Sync Main to Dev / sync-commits (push) Has been cancelled
TOC Generator / TOC Generator (push) Has been cancelled
38 lines
1.3 KiB
CSS
38 lines
1.3 KiB
CSS
ul#sidebar-group > li > a > div:first-child {
|
|
background: transparent !important;
|
|
border: 0 !important;
|
|
box-shadow: none !important;
|
|
padding: 0 !important;
|
|
}
|
|
|
|
ul#sidebar-group > li > button > img,
|
|
ul#sidebar-group > li > a > div:first-child > img {
|
|
/* AppIcon-like shell */
|
|
border: 1px solid transparent !important;
|
|
border-radius: 30% !important;
|
|
padding: 2px;
|
|
display: block;
|
|
box-sizing: content-box;
|
|
background:
|
|
linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%) padding-box,
|
|
linear-gradient(135deg, #cbd5e1 0%, #94a3b8 52%, #cbd5e1 100%) border-box !important;
|
|
box-shadow:
|
|
0 2px 6px rgba(15, 23, 42, 0.18),
|
|
inset 0 0 0 1px rgba(255, 255, 255, 0.55);
|
|
}
|
|
|
|
html.dark ul#sidebar-group > li > button > img,
|
|
html.dark ul#sidebar-group > li > a > div:first-child > img,
|
|
:root[data-theme="dark"] ul#sidebar-group > li > button > img,
|
|
:root[data-theme="dark"] ul#sidebar-group > li > a > div:first-child > img {
|
|
border: 1px solid transparent !important;
|
|
/* Use inverted shell colors so post-filter background stays blue */
|
|
background:
|
|
linear-gradient(135deg, #e9cfaf 0%, #f6f3ee 100%) padding-box,
|
|
linear-gradient(135deg, #b18a67 0%, #f2dcc2 52%, #b18a67 100%) border-box !important;
|
|
box-shadow:
|
|
0 6px 14px rgba(245, 186, 104, 0.22),
|
|
inset 0 0 0 1px rgba(0, 0, 0, 0.1);
|
|
filter: invert(1);
|
|
}
|