mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 05:52:22 -04:00

* Update to latest Node LTS * Add sveltekit * Split tslib into separate @generated and @tslib components SvelteKit's path aliases don't support multiple locations, so our old approach of using @tslib to refer to both ts/lib and out/ts/lib will no longer work. Instead, all generated sources and their includes are placed in a separate out/ts/generated folder, and imported via @generated instead. This also allows us to generate .ts files, instead of needing to output separate .d.ts and .js files. * Switch package.json to module type * Avoid usage of baseUrl Incompatible with SvelteKit * Move sass into ts; use relative links SvelteKit's default sass support doesn't allow overriding loadPaths * jest->vitest, graphs example working with yarn dev * most pages working in dev mode * Some fixes after rebasing * Fix/silence some svelte-check errors * Get image-occlusion working with Fabric types * Post-rebase lock changes * Editor is now checked * SvelteKit build integrated into ninja * Use the new SvelteKit entrypoint for pages like congrats/deck options/etc * Run eslint once for ts/**; fix some tests * Fix a bunch of issues introduced when rebasing over latest main * Run eslint fix * Fix remaining eslint+pylint issues; tests now all pass * Fix some issues with a clean build * Latest bufbuild no longer requires @__PURE__ hack * Add a few missed dependencies * Add yarn.bat to fix Windows build * Fix pages failing to show when ANKI_API_PORT not defined * Fix svelte-check and vitest on Windows * Set node path in ./yarn * Move svelte-kit output to ts/.svelte-kit Sadly, I couldn't figure out a way to store it in out/ if out/ is a symlink, as it breaks module resolution when SvelteKit is run. * Allow HMR inside Anki * Skip SvelteKit build when HMR is defined * Fix some post-rebase issues I should have done a normal merge instead.
157 lines
3.1 KiB
SCSS
157 lines
3.1 KiB
SCSS
/* Copyright: Ankitects Pty Ltd and contributors
|
|
* License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html */
|
|
@use "../../../../../ts/lib/sass/root-vars";
|
|
@use "../../../../../ts/lib/sass/vars" as *;
|
|
@use "../../../../../ts/lib/sass/card-counts";
|
|
@use "../../../../../ts/lib/sass/elevation" as *;
|
|
|
|
table {
|
|
padding: 1rem;
|
|
|
|
.fancy & {
|
|
border: 1px solid var(--border-subtle);
|
|
border-radius: var(--border-radius-medium);
|
|
|
|
@include elevation(1, $opacity-boost: -0.08);
|
|
&:hover {
|
|
@include elevation(2);
|
|
}
|
|
background: var(--canvas-glass);
|
|
}
|
|
}
|
|
|
|
a.deck {
|
|
color: color(fg);
|
|
text-decoration: none;
|
|
min-width: 5em;
|
|
display: inline-block;
|
|
}
|
|
|
|
a.deck:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
th {
|
|
border-bottom: 1px solid color(border-subtle);
|
|
padding-bottom: 5px;
|
|
}
|
|
|
|
tr.deck td {
|
|
padding: 1px 12px;
|
|
border-bottom: 1px solid var(--border-subtle);
|
|
|
|
.fancy & {
|
|
border: unset;
|
|
padding: 4px 12px;
|
|
}
|
|
}
|
|
|
|
tr.top-level-drag-row td {
|
|
border-bottom: 1px solid transparent;
|
|
}
|
|
|
|
td {
|
|
white-space: nowrap;
|
|
}
|
|
|
|
tr.drag-hover td {
|
|
border-bottom: 1px solid color(border);
|
|
}
|
|
|
|
body {
|
|
margin: 2em 1em 1em 1em;
|
|
-webkit-user-select: none;
|
|
}
|
|
|
|
.current,
|
|
tr:hover:not(.top-level-drag-row) {
|
|
td {
|
|
background: color(border-subtle);
|
|
&:first-child {
|
|
border-top-left-radius: prop(border-radius-medium);
|
|
border-bottom-left-radius: prop(border-radius-medium);
|
|
}
|
|
&:last-child {
|
|
border-top-right-radius: prop(border-radius-medium);
|
|
border-bottom-right-radius: prop(border-radius-medium);
|
|
}
|
|
.gears {
|
|
visibility: visible;
|
|
}
|
|
}
|
|
}
|
|
[dir="rtl"] {
|
|
.current,
|
|
tr:hover:not(.top-level-drag-row) {
|
|
td {
|
|
background: color(canvas-inset);
|
|
&:first-child {
|
|
border-top-left-radius: 0;
|
|
border-bottom-left-radius: 0;
|
|
border-top-right-radius: prop(border-radius-medium);
|
|
border-bottom-right-radius: prop(border-radius-medium);
|
|
}
|
|
&:last-child {
|
|
border-top-right-radius: 0;
|
|
border-bottom-right-radius: 0;
|
|
border-top-left-radius: prop(border-radius-medium);
|
|
border-bottom-left-radius: prop(border-radius-medium);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.decktd {
|
|
min-width: 15em;
|
|
max-width: calc(100vw - 300px);
|
|
overflow: hidden;
|
|
}
|
|
|
|
.count {
|
|
min-width: 4em;
|
|
text-align: right;
|
|
}
|
|
|
|
.optscol {
|
|
width: 2em;
|
|
}
|
|
|
|
.collapse {
|
|
color: color(fg);
|
|
text-decoration: none;
|
|
display: inline-block;
|
|
width: 1em;
|
|
}
|
|
|
|
.filtered {
|
|
color: color(fg-link) !important;
|
|
}
|
|
|
|
.gears {
|
|
width: 1em;
|
|
height: 1em;
|
|
opacity: 0.5;
|
|
padding-top: 0.2em;
|
|
cursor: pointer;
|
|
visibility: hidden;
|
|
}
|
|
|
|
.nightMode {
|
|
.gears {
|
|
filter: invert(180);
|
|
}
|
|
}
|
|
|
|
.callout {
|
|
background: color(border);
|
|
padding: 1em;
|
|
margin: 1em;
|
|
|
|
div {
|
|
margin: 1em;
|
|
}
|
|
}
|
|
|
|
#studiedToday {
|
|
margin: 2em 0;
|
|
}
|